*/
@Test(groups = "unit", testName = "AppendRemoteServiceTypeToPathTest")
public class AppendRemoteServiceTypeToPathTest {
@Test(expectedExceptions = NullPointerException.class)
public void testGetValueWithNullInput() {
AppendRemoteServiceTypeToPath binder = new AppendRemoteServiceTypeToPath(new ParseRemoteServiceType());
HttpRequest request = HttpRequest.builder().method("GET").endpoint(URI.create("http://localhost")).build();
binder.getValue(request, null);
}