Assert.assertEquals("target", path.require("p2").require("path").asString());
Assert.assertEquals("p1", path.require("p2").require("relative-to").asString());
ServiceController<?> controller = services.getContainer().getService(PathUserService.NAME);
Assert.assertNotNull(controller);
PathUserService service = (PathUserService)controller.getValue();
Assert.assertEquals(new File(".", "target").getAbsolutePath(), service.pathValue.getValue());
}