1 package junitour;
2
3 /**
4 * A marker interface for marking any exception/error as result of an unit test
5 * as incomplete implementation or currently not implemnented.
6 *
7 * <pre>
8 * public void testAnyMethod () {
9 * throw new Exception ("please add additional tests to this unit test.") implements UnitTestIncomplete {
10 * };
11 * }
12 * </pre>
13 *
14 * <br/>created: by hostlows, at 17.10.2003/ 14:40:15
15 * <pre>
16 * $Log$
17 * Revision 1.2 2004/07/08 01:47:50 hostlows
18 * cleanup, new build, license changed to mozilla license...
19 *
20 * Revision 1.1.1.1 2003/11/12 23:32:13 hostlows
21 * Initial import.
22 *
23 * Revision 1.1 2003/10/30 07:13:54 hostlows
24 * First release, which can run as a TextUI-Testrunner and
25 * produces an enhanced output: additionally prints the count of
26 * incomplete Tests! It handles examination of incomplete Testcase over
27 * different classloaders now!
28 *
29 * </pre>
30 *
31 * @author $Author: hostlows $, created by <a href="mailto:hostlows@users.sf.net">Robert Hostlowsky</a>
32 * @version $Revision: 26 $
33 */
34 public interface UnitTestIncomplete {
35 }