1 package net.sourceforge.ejtools.management.test; 2 3 import junit.extensions.jfunc.AssertListener; 4 5 10 public interface ResultSink extends AssertListener 11 { 12 13 public final static int PASSED = 0; 14 15 public final static int FAILED = 1; 16 17 public final static int ERROR = 2; 18 19 20 25 public long getPercentage(); 26 27 public void dump(); 28 } 29 | Popular Tags |