Example #1
0
 protected void completed() {
   time = System.currentTimeMillis() - time;
   System.out.println(name() + " completed. " + time + " ms");
   System.out.println("Test cases: " + testCases);
 }
Example #2
0
 public static void main(String[] args) {
   time = System.currentTimeMillis();
   SodaTest st = new SodaTest();
   st.run(CLASSES, ENGINES, quiet);
   st.completed();
 }