use of org.apache.knox.gateway.services.TestService in project knox by apache.
the class ServiceFactoryTest method shouldReturnCustomImplementation.
private void shouldReturnCustomImplementation(AbstractServiceFactory serviceFactory, ServiceType matchingServiceType) throws Exception {
final Service service = serviceFactory.create(gatewayServices, matchingServiceType, null, null, "org.apache.knox.gateway.services.TestService");
assertTrue(service instanceof TestService);
}
Aggregations