Move test files into HTMLKitTests subfolder Swift Package Manager

This commit is contained in:
iska
2017-02-25 02:07:02 +01:00
parent 5bb7122d7e
commit f1fd0f3ef6
33 changed files with 46 additions and 46 deletions
@@ -0,0 +1,23 @@
//
// HTML5LibTreeConstructionTest.h
// HTMLKit
//
// Created by Iska on 25/03/15.
// Copyright (c) 2015 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
@class HTMLElement;
@interface HTML5LibTreeConstructionTest : NSObject
@property (nonatomic, copy) NSString *testFile;
@property (nonatomic, copy) NSString *data;
@property (nonatomic, strong) NSArray *errors;
@property (nonatomic, strong) HTMLElement *documentFragment;
@property (nonatomic, strong) NSArray *nodes;
+ (NSDictionary *)loadHTML5LibTreeConstructionTests;
@end