use of org.talend.components.marketo.tmarketoconnection.TMarketoConnectionProperties in project components by Talend.
the class MarketoBaseRESTClientTest method setUp.
@Before
public void setUp() throws Exception {
TMarketoConnectionProperties conn = new TMarketoConnectionProperties("test");
conn.apiMode.setValue(APIMode.REST);
conn.endpoint.setValue("https://fake.io");
conn.clientAccessId.setValue("client");
conn.secretKey.setValue("sekret");
client = new MarketoRESTClient(conn);
}
Aggregations