Package com.eviware.soapui.model.testsuite

Examples of com.eviware.soapui.model.testsuite.TestStep


    public final void setPropertyValue(String testStep, String property, String value) throws Exception {
        if (!(context instanceof TestCaseRunContext)) {
            return;
        }

        TestStep step = ((TestCaseRunContext) context).getTestCase().getTestStepByName(testStep);
        if (step != null) {
            step.setPropertyValue(property, value);
        } else {
            throw new Exception("Missing TestStep [" + testStep + "] in TestCase");
        }
    }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.model.testsuite.TestStep

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.