Package net.sourceforge.marathon.junit

Examples of net.sourceforge.marathon.junit.MarathonTestCase


        xml.append(status);
        xml.append("\" time=\"");
        xml.append(durationStr);
        xml.append("\" >\n");
        if (test instanceof MarathonTestCase) {
            MarathonTestCase mtestcase = (MarathonTestCase) test;
            ArrayList<CheckList> checklists = mtestcase.getChecklists();
            if (checklists.size() > 0) {
                int index = 1;
                for (CheckList checkList : checklists) {
                    ByteArrayOutputStream baos = new ByteArrayOutputStream();
                    checkList.saveXML(indent, baos, index++);
View Full Code Here


        }

        public void startTest() {
            if (!needReports())
                return;
            testCase = new MarathonTestCase(new File(getFilePath()), false, new StdOutConsole()) {
                String t_suffix = display.getDDTestRunner() == null ? "" : display.getDDTestRunner().getName();
                String name = exploratoryTest ? runReportDir.getName() : super.getName() + t_suffix;

                public String getName() {
                    return name;
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.junit.MarathonTestCase

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.