Examples of IRunTestsResultExt


Examples of com.salesforce.ide.core.remote.IRunTestsResultExt

                new DeployResultsViewAssembler(deployResult, runTestComposite.getTree(), resource.getProject(),
                        serviceLocator.getProjectService());
        assembler.assembleRunTestsResultsTree();

        // set debug logs
        IRunTestsResultExt runTestResults = new RunTestsResultExt(deployResult);
        if (runTestResults.getDebugInfo() != null && Utils.isNotEmpty(runTestResults.getDebugInfo().getDebugLog())) {
            runTestComposite.getTextArea().setText(DEBUG_LOG + ":\n\n" + runTestResults.getDebugInfo().getDebugLog());
        } else {
            runTestComposite.getTextArea().setText("No Debug Logs");
        }

        if (project != null) {
View Full Code Here

Examples of com.salesforce.ide.core.remote.IRunTestsResultExt

    private String generateTestResultString() {
        if (deployResultHandler == null) {
            return null;
        }

        IRunTestsResultExt runResults = new RunTestsResultExt(deployResultHandler.getDeployResult().getDetails().getRunTestResult());
        String resultsLog = null;
        if (runResults != null) {
            resultsLog = runResults.toLog();
        }
        return resultsLog;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.