Search in sources :

Example 1 with PropertiesServiceImpl

use of org.talend.daikon.properties.service.PropertiesServiceImpl in project components by Talend.

the class SalesforceDatasetPropertiesTest method setUp.

@Before
public void setUp() {
    propertiesService = new PropertiesServiceImpl();
    datastoreProperties = new SalesforceDatastoreProperties("datastore");
    properties = spy(new SalesforceDatasetProperties("dataset"));
}
Also used : PropertiesServiceImpl(org.talend.daikon.properties.service.PropertiesServiceImpl) SalesforceDatastoreProperties(org.talend.components.salesforce.datastore.SalesforceDatastoreProperties) Before(org.junit.Before)

Example 2 with PropertiesServiceImpl

use of org.talend.daikon.properties.service.PropertiesServiceImpl in project components by Talend.

the class TSalesforceBulkExecPropertiesTest method setUp.

@Before
public void setUp() {
    propertiesService = new PropertiesServiceImpl();
    properties = new TSalesforceBulkExecProperties("root");
}
Also used : PropertiesServiceImpl(org.talend.daikon.properties.service.PropertiesServiceImpl) Before(org.junit.Before)

Example 3 with PropertiesServiceImpl

use of org.talend.daikon.properties.service.PropertiesServiceImpl in project components by Talend.

the class TSalesforceOutputPropertiesTest method setUp.

@Before
public void setUp() {
    propertiesService = new PropertiesServiceImpl();
    properties = new TSalesforceOutputProperties("root");
}
Also used : PropertiesServiceImpl(org.talend.daikon.properties.service.PropertiesServiceImpl) Before(org.junit.Before)

Example 4 with PropertiesServiceImpl

use of org.talend.daikon.properties.service.PropertiesServiceImpl in project components by Talend.

the class TSalesforceOutputBulkPropertiesTest method setUp.

@Before
public void setUp() {
    propertiesService = new PropertiesServiceImpl();
    properties = new TSalesforceOutputBulkProperties("root");
}
Also used : PropertiesServiceImpl(org.talend.daikon.properties.service.PropertiesServiceImpl) Before(org.junit.Before)

Example 5 with PropertiesServiceImpl

use of org.talend.daikon.properties.service.PropertiesServiceImpl in project components by Talend.

the class SalesforceModuleListPropertiesTest method setUp.

@Before
public void setUp() {
    propertiesService = new PropertiesServiceImpl();
    connectionProperties = new SalesforceConnectionProperties("connection");
    connectionProperties.name.setValue(connectionName);
    properties = new SalesforceModuleListProperties("root");
    properties.setConnection(connectionProperties);
    properties.setRepositoryLocation(repoLocation);
}
Also used : PropertiesServiceImpl(org.talend.daikon.properties.service.PropertiesServiceImpl) Before(org.junit.Before)

Aggregations

Before (org.junit.Before)5 PropertiesServiceImpl (org.talend.daikon.properties.service.PropertiesServiceImpl)5 SalesforceDatastoreProperties (org.talend.components.salesforce.datastore.SalesforceDatastoreProperties)1