1 2 3 package org.quilt.runner; 4 5 public interface RunnerConst { 6 7 8 public static final int SUCCESS = 0; 9 10 11 public static final int FAILURES = 1; 12 13 14 public static final int ERRORS = 2; 15 16 20 public static final String [] DEFAULT_TRACE_FILTERS = new String [] { 21 "java.lang.reflect.Method.invoke(", 22 23 "junit.awtui.TestRunner", 25 "junit.swingui.TestRunner", 26 "junit.textui.TestRunner", 27 28 "junit.framework.TestCase", 29 "junit.framework.TestResult", 30 "junit.framework.TestSuite", 31 "junit.framework.Assert.", 33 34 "org.apache.tools.ant.", 35 "org.quilt" 36 }; 37 } 38 | Popular Tags |