1 29 package net.sourceforge.groboutils.mbtf.v1; 30 31 32 40 public interface IErrors 41 { 42 43 53 public void halt( String msg ) 54 throws TestHaltRuntimeException; 55 56 57 68 public void addFailure( String msg ); 69 70 71 83 public void addFailure( String msg, Throwable t ); 84 85 86 99 public void fail( String msg ) 100 throws TestFailRuntimeException; 101 102 103 117 public void fail( String msg, Throwable t ) 118 throws TestFailRuntimeException; 119 120 121 132 public void addError( String msg ); 133 134 135 146 public void addError( String msg, Throwable t ); 147 148 149 158 public void addWarning( String msg ); 159 160 161 164 public IError[] getErrors(); 165 } 166 167 | Popular Tags |