Package ru.yandex.qatools.allure.data

Examples of ru.yandex.qatools.allure.data.AllureTestCasePack


    private static final String TESTCASE_JSON_SUFFIX = "-testcase.json";

    @Override
    protected <T> long serialize(File outputDirectory, Class<T> type, String name, Reader reader) {
        AllureTestCasePack result = (AllureTestCasePack) JAXB.unmarshal(
                reader,
                type
        );

        long count = 0;
        for (AllureTestCase testCase : result.getTestCases()) {
            count += AllureReportUtils.serialize(
                    outputDirectory,
                    testCase.getUid() + TESTCASE_JSON_SUFFIX,
                    testCase
            );
View Full Code Here

TOP

Related Classes of ru.yandex.qatools.allure.data.AllureTestCasePack

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.