Package ru.yandex.qatools.allure.model

Examples of ru.yandex.qatools.allure.model.Parameter


     *
     * @param context which can be changed
     */
    @Override
    public void process(TestCaseResult context) {
        context.getParameters().add(new Parameter()
                        .withName(getName())
                        .withValue(getValue())
                        .withKind(ParameterKind.ENVIRONMENT_VARIABLE)
        );
    }
View Full Code Here

TOP

Related Classes of ru.yandex.qatools.allure.model.Parameter

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.