mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-10 06:15:49 +00:00
20 lines
352 B
Plaintext
20 lines
352 B
Plaintext
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
* Proprietary and Confidential
|
|
*/
|
|
|
|
#import <XCTest/XCTest.h>
|
|
#import <RealmJS/js_init.h>
|
|
#import "parser.hpp"
|
|
|
|
@interface GrammerTests : XCTestCase
|
|
@end
|
|
|
|
@implementation GrammerTests
|
|
|
|
- (void)testGrammer {
|
|
realm::parser::analyzeGrammar();
|
|
XCTAssertTrue(realm::parser::testGrammar());
|
|
}
|
|
|
|
@end
|