Package murban.exerciser.parser.model

Examples of murban.exerciser.parser.model.TestReport


    @Test
    public void parseTestReportTest() throws IOException, SAXException, ParserConfigurationException {
        URL url = this.getClass().getClassLoader().getResource("testdata/TEST-MyLogicTest.xml");
        File file = new File(url.getFile());
        TestReport testReport = antXmlParser.parseTestReport(file);

        assertEquals(testReport.testsCount, 18);
        assertEquals(testReport.failuresCount, 0);
        assertEquals(testReport.errorsCount, 0);
        assertEquals(testReport.successes.size(), 18);
View Full Code Here

TOP

Related Classes of murban.exerciser.parser.model.TestReport

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.