use of org.talend.components.api.service.common.ComponentServiceImpl in project components by Talend.
the class AzureStorageBaseTestIT method getComponentService.
// default implementation for pure java test. Shall be overriden of Spring or OSGI tests
public ComponentService getComponentService() {
if (componentService == null) {
DefinitionRegistry testComponentRegistry = new DefinitionRegistry();
// register component
testComponentRegistry.registerComponentFamilyDefinition(new AzureStorageFamilyDefinition());
componentService = new ComponentServiceImpl(testComponentRegistry);
}
return componentService;
}
use of org.talend.components.api.service.common.ComponentServiceImpl in project components by Talend.
the class SalesforceTestBase method getComponentService.
// default implementation for pure java test. Shall be overriden of Spring or OSGI tests
@Override
public ComponentService getComponentService() {
if (componentService == null) {
DefinitionRegistry testComponentRegistry = new DefinitionRegistry();
// register component
testComponentRegistry.registerComponentFamilyDefinition(new SalesforceFamilyDefinition());
componentService = new ComponentServiceImpl(testComponentRegistry);
}
return componentService;
}
use of org.talend.components.api.service.common.ComponentServiceImpl in project components by Talend.
the class JiraReaderTestIT method setupService.
/**
* Creates {@link ComponentService} for tests
*/
@BeforeClass
public static void setupService() {
DefinitionRegistry registry = new DefinitionRegistry();
registry.registerDefinition(Arrays.asList(new TJiraInputDefinition()));
componentService = new ComponentServiceImpl(registry);
}
use of org.talend.components.api.service.common.ComponentServiceImpl in project components by Talend.
the class FileDelimitedTestBasic method getComponentService.
@Override
public ComponentService getComponentService() {
if (componentService == null) {
DefinitionRegistry testComponentRegistry = new DefinitionRegistry();
testComponentRegistry.registerComponentFamilyDefinition(new FileDelimitedFamilyDefinition());
componentService = new ComponentServiceImpl(testComponentRegistry);
}
return componentService;
}
use of org.talend.components.api.service.common.ComponentServiceImpl in project components by Talend.
the class TFilterRowTest method getComponentService.
// default implementation for pure java test.
public ComponentService getComponentService() {
if (componentService == null) {
DefinitionRegistry testComponentRegistry = new DefinitionRegistry();
testComponentRegistry.registerComponentFamilyDefinition(new TFilterRowFamilyDefinition());
componentService = new ComponentServiceImpl(testComponentRegistry);
}
return componentService;
}
Aggregations