HttpRequest request = HttpRequest.builder().method("GET").endpoint(URI.create("http://localhost")).build();
binder.getValue(request, new Object());
}
public void testGetValue() {
AppendMachineIdToPath binder = new AppendMachineIdToPath(new ParseMachineId());
HttpRequest request = HttpRequest.builder().method("GET").endpoint(URI.create("http://localhost")).build();
MachineDto machine = new MachineDto();
machine.setId(5);
assertEquals(binder.getValue(request, machine), "5");