linphone-ios/LinphoneTester/DetailViewController.h
Guillaume BIENKOWSKI 9af53c8a16 Progress commit on logs handler for linphone tester.
High memory usage on logs scroll though.
2014-06-01 21:27:38 +02:00

34 lines
666 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 DetailViewController : UITableViewController
@property (strong, nonatomic) NSString* detailItem;
@end