Package org.jitterbit.integration.data.test

Examples of org.jitterbit.integration.data.test.TestOperationResult


            public TestHistoryWriter(ManagedProject project) {
                opHistory = project.getTestHistory().getTestOperationHistory();
            }

            public void handleError(TestResultError error) {
                TestOperationResult result = TestOperationResult.error(operation, transformation, error);
                opHistory.add(result);
            }
View Full Code Here


                TestOperationResult result = TestOperationResult.error(operation, transformation, error);
                opHistory.add(result);
            }

            public void handleSuccess(String warnings) {
                TestOperationResult result = TestOperationResult.success(operation, transformation, warnings);
                opHistory.add(result);
            }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.test.TestOperationResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.