mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
34 lines
666 B
Objective-C
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
|