this.gsonBuilder = new GsonBuilder().registerTypeAdapterFactory(new IdGsonTypeAdapterFactory());
this.employees = new RepositoryInMemory<Employee>();
this.queryHandler = new QueryHandlerEmployee(employees);
CallPath queryPath =
new CallPathParser("/rest", true, "/employee").parse("/rest/1.2/employee");
this.urlPaths = new ResourceUrlPaths("http://localhost/fake/service/rest",
"/fake", "/service", "/rest");
ResourceQueryClientFake<Employee, QueryEmployeeByName> stub =
new ResourceQueryClientFake<Employee, QueryEmployeeByName>(queryHandler, gsonBuilder,
urlPaths, queryPath, null);