Files
HTMLKit/HTMLKitTests/HTML5LibTest.h
T
iska f2993181a8 Change method names in HTML5 Lib test class
Change Fixture to Dctionary
2014-10-26 23:43:21 +01:00

23 lines
584 B
Objective-C

//
// HTML5LibTest.h
// HTMLKit
//
// Created by Iska on 25/10/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface HTML5LibTest : NSObject
@property (nonatomic, strong) NSString *description;
@property (nonatomic, strong) NSString *input;
@property (nonatomic, strong) NSArray *output;
@property (nonatomic, strong) NSArray *initialStates;
@property (nonatomic, strong) NSString *lastStartTag;
@property (nonatomic, assign) BOOL ignoreErrorOrder;
- (instancetype)initWithTestDictionary:(NSDictionary *)dictionary;
@end