Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tupilabs/testng-parser

TestNG Parser
https://github.com/tupilabs/testng-parser

parser parsing testing testng xunit

Last synced: 22 days ago
JSON representation

TestNG Parser

Awesome Lists containing this project

README

        

# testng-parser: A simple TestNG parser

TestNG Parser project with a simple TestNG parser, used by other projects such
as Jenkins plug-ins.

## Build status

[![Build Status](https://buildhive.cloudbees.com/job/tupilabs/job/testng-parser/badge/icon)](https://buildhive.cloudbees.com/job/tupilabs/job/testng-parser/)

## Usage example

Below an example of how to use this parser.

ClassLoader cl = TestTestNGParser.class.getClassLoader();
URL url = cl.getResource("com/tupilabs/testng/parser/testng-results.xml");
File file = new File(url.getFile());

List suites = null;
try {
suites = this.parser.parse(file);
} catch (ParserException e) {
fail("Failed to parse testng file '" + file + "': " + e.getMessage());
}

assertTrue(suite.getName().equals("Command line suite"));

List tests = suite.getTests();
assertEquals(tests.size(), 1);

Class clazz = classes.get(0);
assertNotNull(clazz);

assertTrue(clazz.getName().equals("br.eti.kinoshita.Test1"));

List testMethods = clazz.getTestMethods();

TestMethod testMethod = testMethods.get(0);
assertTrue(testMethod.getStatus().equals("PASS"));

## Licensing

This project is licensed under MIT License.

## Contributing

Fork it, send pull requests or drop us a message :-)