RegressionTestsViewController.h
1 // 2 // RegressionTestsViewController.h 3 // GSSTestApp 4 // 5 // Created by Love Hörnquist Åstrand on 2014-08-15. 6 // Copyright (c) 2014 Apple, Inc. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 11 @interface RegressionTestsViewController : UIViewController 12 13 @property (weak) IBOutlet UIBarButtonItem *runTestsButton; 14 @property (weak) IBOutlet UILabel *statusLabel; 15 @property (weak) IBOutlet UITextView *progressTextView; 16 17 - (IBAction)runTests:(id)sender; 18 - (void)appendProgress:(NSString *)string color:(UIColor *)color; 19 20 @end