5 // Created by James Murphy on 12/13/12.
6 // Copyright 2012 James Murphy. All rights reserved.
9 #import <Foundation/Foundation.h>
10 #import "ValidateAsset.h"
12 int main (int argc, const char * argv[])
16 NSLog(@"Starting the TestValidator");
17 NSString* resource_path = [[NSBundle mainBundle] resourcePath];
18 const char* asset_dir_path = [resource_path UTF8String];
19 if (ValidateAsset(asset_dir_path, 99))
21 NSLog(@"The assert did not validate");
25 NSLog(@"The assert validated!");