*/
public class HelloWorldControllerTest extends DatabaseIntegrationTest {
@Test
public void shouldCreateAndReturnNode() {
long nodeId = new HelloWorldController(new HelloWorldNodeCreator(getDatabase())).createHelloWorldNode();
try (Transaction tx = getDatabase().beginTx()) {
assertEquals("world", getDatabase().getNodeById(nodeId).getProperty("hello"));
tx.success();
}