realm-js/tests/ios/GrammarTests.mm

20 lines
352 B
Plaintext
Raw Normal View History

2015-11-20 15:16:35 -08:00
/* Copyright 2015 Realm Inc - All Rights Reserved
* Proprietary and Confidential
*/
#import <XCTest/XCTest.h>
2015-11-30 11:47:32 -08:00
#import <RealmJS/js_init.h>
2015-11-20 15:16:35 -08:00
#import "parser.hpp"
@interface GrammerTests : XCTestCase
@end
@implementation GrammerTests
- (void)testGrammer {
2015-11-23 08:47:09 -08:00
realm::parser::analyzeGrammar();
XCTAssertTrue(realm::parser::testGrammar());
2015-11-20 15:16:35 -08:00
}
@end