use of com.axway.ats.agent.webapp.client.executors.LocalExecutor in project ats-framework by Axway.
the class Test_LocalExecutor method backupPositive.
@Test
public void backupPositive() throws Exception {
expect(EnvironmentHandler.getInstance()).andReturn(mockEnvironmentHandler);
mockEnvironmentHandler.backup(TEST_COMPONENT_NAME, null, null);
replayAll();
LocalExecutor localExecutor = new LocalExecutor();
localExecutor.backup(TEST_COMPONENT_NAME, null, null);
}
Aggregations