use of org.apache.qpid.disttest.controller.ResultsForAllTests in project qpid-broker-j by apache.
the class CSVFormatterTest method testResultsFileWithWithOneRow.
@Test
public void testResultsFileWithWithOneRow() throws Exception {
ResultsTestFixture resultsTestFixture = new ResultsTestFixture();
ResultsForAllTests resultsForAllTests = resultsTestFixture.createResultsForAllTests();
String output = _formatter.format(resultsForAllTests.getTestResults());
String expectedOutput = readCsvOutputFileAsString("expectedOutput.csv");
assertEquals(expectedOutput, output);
}
Aggregations