summaryrefslogtreecommitdiffstats
path: root/junit4/done.txt
blob: 0a89d46240909e13c33702f8a35377426cf4e546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
* name space of JUnit4 is org.junit
* JUnit4 requires J2SE 5.0
	leverage J2SE 5.0 features
* @Test annotation
	@Test(expected=IndexOutOfBoundsException.class)
	@Test(timeout= 1000)
* @Ignore(reason= "...")
* @Before, @After setup/teardown
* @BeforeClass, @AfterClass one-time setup/teardown
* provide ForwardCompatibility so that existing test Runners can 
  run JUnit4 tests:
	public static junit.framework.Test suite() {
		return new JUnit4TestAdapter(ListTest.class);
	}
* add assertEquals(Object[], Object[])
* Add backward compatibility for old JUnit tests in the new Runner
* support the assert keyword and use AssertionError 
* remove the old graphical runners
* simplify: get rid of failures and errors distinction
* Annotation for runner strategy
* Parameterized test
* Should RunNotifier be API?
* Runner should be abstract class.
* Run single method with @BeforeClass and @AfterClass
* Stopping a test run (there was support for this in 3.8 - TestResult.shouldStop())

* Suite annotation example:
	@Suite(tests={MoneyTest.class, SimpleTest.class})
	or with filters
	@Suite(pattern="*Test"}
	@Suite(package="org.junit.test.*")
	@Suite
	
* be able to run all tests simply from the command line
* get rid of JUnit4TestCaseAdapter (use JUnit4RunnerStrategy in JUnit4TestAdapter)
* enable tighter and more flexible IDE integration
	* enable test reordering/prioritization
	* test categorization & filtering (<- seems like a runner issue) @Category(short, integration)  @Test(category=windowsOnly)
* make sure TestListener is symmetric and meets needs of runner developers
	* TestRunEvent
* Decide how we ship JUnit-- 1.5 only or hybrid
	* README.html
* add  javadoc to API interfaces and Annotations
	http://java.sun.com/j2se/javadoc/writingapispecs/index.html
* Merge branch back into head
* review Ant scripts
* make suites simpler for both the IDE providers and the users
* ClassRequest should search up the hierarchy for the requested Class to look for @RunWith