()
| 26 | private static final String FGN_ROOT = "src/test/resources/data/fgn"; |
| 27 | |
| 28 | @Before |
| 29 | public void setUp() throws IOException { |
| 30 | Schema schema = Schema.create(FGN_ROOT + "/schema/classic.json"); |
| 31 | StateContext.load(schema); |
| 32 | ActionOutcome.load(schema); |
| 33 | Coordinates.load(schema); |
| 34 | ActionType.load(schema); |
| 35 | } |
| 36 | |
| 37 | private Statement parseStatement(String statement) throws ScannerException, ParserException { |
| 38 | List<String> tokens = getTokens(statement); |