public static void main(String[] args) throws Exception { long now = System.currentTimeMillis(); SummaryResults results = new SummaryResults(); for (AbstractBlackBoxTestCase test : TESTS) { results.add(test.testBlackBoxCountingResults(false)); } now = System.currentTimeMillis() - now; System.out.println(results.toString() + "\n Total time: " + now + " ms"); }
public static void main(String[] args) throws Exception { long start = System.currentTimeMillis(); SummaryResults results = new SummaryResults(); for (AbstractBlackBoxTestCase test : TESTS) { results.add(test.testBlackBoxCountingResults(false)); } log.info(results.toString()); log.info(String.format("Total time: %d ms", System.currentTimeMillis() - start)); }