binder.bindToRequest(request, dto);
}
public void testBindLogicServer() {
BindLogicServerParameters binder = new BindLogicServerParameters();
LogicServerDto dto = new LogicServerDto();
dto.setName("name");
HttpRequest request = HttpRequest.builder().method("GET").endpoint(URI.create("http://localhost")).build();
HttpRequest newRequest = binder.bindToRequest(request, dto);
assertEquals(newRequest.getRequestLine(), "GET http://localhost?lsName=name HTTP/1.1");
}