Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tupilabs/testng-parser
- Owner: tupilabs
- Created: 2012-10-10T23:23:07.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-04-19T20:19:04.000Z (over 8 years ago)
- Last Synced: 2024-03-26T01:54:45.377Z (9 months ago)
- Topics: parser, parsing, testing, testng, xunit
- Language: Java
- Size: 35.2 KB
- Stars: 12
- Watchers: 4
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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"));
## LicensingThis project is licensed under MIT License.
## Contributing
Fork it, send pull requests or drop us a message :-)