linphone-ios/LiblinphoneTester/DetailView.h
Gautier Pelloux-Prayer 2c05f973c0 major mv
2015-09-09 16:44:00 +02:00

28 lines
642 B
Objective-C

//
// DetailViewController.h
// LinphoneTester
//
// Created by guillaume on 28/05/2014.
//
//
#import <UIKit/UIKit.h>
typedef NS_ENUM(int, TestState) { TestStateIdle, TestStatePassed, TestStateInProgress, TestStateFailed };
@interface TestItem : NSObject
@property(strong, nonatomic) NSString *suite;
@property(strong, nonatomic) NSString *name;
@property(nonatomic) TestState state;
- (id)initWithName:(NSString *)name fromSuite:(NSString *)suite;
+ (TestItem *)testWithName:(NSString *)name fromSuite:(NSString *)suite;
@end
@interface DetailView : UITableViewController
@property(strong, nonatomic) NSString *detailItem;
@end