Package hudson.plugins.nunit
Interface TestReportTransformer
- All Known Implementing Classes:
NUnitReportTransformer
public interface TestReportTransformer
Interface for mocking out the NUnitReportTransformer from testing.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
transform
(InputStream nunitFileStream, File junitOutputPath) Transforms the nunit file stream to junit files in the specified output path
-
Method Details
-
transform
void transform(InputStream nunitFileStream, File junitOutputPath) throws IOException, TransformerException, SAXException, ParserConfigurationException Transforms the nunit file stream to junit files in the specified output path- Parameters:
nunitFileStream
- nunit report file streamjunitOutputPath
- the output path to store junit reports to- Throws:
ParserConfigurationException
IOException
TransformerException
SAXException
-