Package com.eviware.soapui.model.testsuite

Examples of com.eviware.soapui.model.testsuite.TestStepResult.discard()


    // if( discard && stepResult.getStatus() == TestStepStatus.OK &&
    // getTestRunnable().getDiscardOkResults()
    if( discard && stepResult.getStatus() == TestStepStatus.OK && getTestCase().getDiscardOkResults()
        && !stepResult.isDiscarded() )
    {
      stepResult.discard();
    }

    if( process && stepResult.getStatus() == TestStepStatus.FAILED )
    {
      // if( getTestRunnable().getFailOnError() )
View Full Code Here


        // discard?
        // if( discard && stepResult.getStatus() == TestStepStatus.OK &&
        // getTestRunnable().getDiscardOkResults()
        if (discard && stepResult.getStatus() == TestStepStatus.OK && getTestCase().getDiscardOkResults()
                && !stepResult.isDiscarded()) {
            stepResult.discard();
        }

        if (process && stepResult.getStatus() == TestStepStatus.FAILED) {
            // if( getTestRunnable().getFailOnError() )
            if (getTestCase().getFailOnError()) {
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.