Compares the expected results to the results of the last alias generated in the script. Order does not matter and as long as the result is located in any index of expected and any line of the output then this will pass. @param expected The expected results
(String[] expected)
| 374 | * @param expected The expected results |
| 375 | */ |
| 376 | public void assertOutputAnyOrder(String[] expected) throws IOException, ParseException { |
| 377 | assertOutput(expected, true); |
| 378 | } |
| 379 | |
| 380 | public void assertOutput(String[] expected) throws IOException, ParseException { |
| 381 | assertOutput(expected, false); |
no test coverage detected