use of co.rsk.test.dsl.WorldDslProcessor in project rskj by rsksmart.
the class DslFilesTest method runAccounts01Resource.
@Test
public void runAccounts01Resource() throws FileNotFoundException, DslProcessorException {
DslParser parser = DslParser.fromResource("dsl/accounts01.txt");
World world = new World();
WorldDslProcessor processor = new WorldDslProcessor(world);
processor.processCommands(parser);
Assert.assertNotNull(world.getAccountByName("acc1"));
}
use of co.rsk.test.dsl.WorldDslProcessor in project rskj by rsksmart.
the class DslFilesTest method runContracts05Resource.
@Test
public void runContracts05Resource() throws FileNotFoundException, DslProcessorException {
DslParser parser = DslParser.fromResource("dsl/contracts05.txt");
World world = new World();
WorldDslProcessor processor = new WorldDslProcessor(world);
processor.processCommands(parser);
}
use of co.rsk.test.dsl.WorldDslProcessor in project rskj by rsksmart.
the class DslFilesTest method runContracts01Resource.
@Test
public void runContracts01Resource() throws FileNotFoundException, DslProcessorException {
DslParser parser = DslParser.fromResource("dsl/contracts01.txt");
World world = new World();
WorldDslProcessor processor = new WorldDslProcessor(world);
processor.processCommands(parser);
}
use of co.rsk.test.dsl.WorldDslProcessor in project rskj by rsksmart.
the class DslFilesTest method runContracts04Resource.
@Test
public void runContracts04Resource() throws FileNotFoundException, DslProcessorException {
DslParser parser = DslParser.fromResource("dsl/contracts04.txt");
World world = new World();
WorldDslProcessor processor = new WorldDslProcessor(world);
processor.processCommands(parser);
}
use of co.rsk.test.dsl.WorldDslProcessor in project rskj by rsksmart.
the class DslFilesTest method runUncles03Resource.
@Test
public void runUncles03Resource() throws FileNotFoundException, DslProcessorException {
DslParser parser = DslParser.fromResource("dsl/uncles03.txt");
World world = new World();
WorldDslProcessor processor = new WorldDslProcessor(world);
processor.processCommands(parser);
Assert.assertNotNull(world.getBlockByName("b01"));
Assert.assertNotNull(world.getBlockByName("u01"));
Assert.assertNotNull(world.getBlockByName("u02"));
Assert.assertNotNull(world.getBlockByName("b02"));
Assert.assertNotNull(world.getBlockByName("c02"));
Assert.assertEquals(2, world.getBlockChain().getStatus().getBestBlock().getNumber());
}
Aggregations