Java is nearing version 7. It occurs to me that there must be plenty of textbooks and training manuals kicking around that teach methods based on older versions of Java, whe
Changing JUnit 3-style tests:
class Test extends TestCase { public void testYadaYada() { ... } }
to JUnit 4-style tests:
class Test { @Test public void yadaYada() { ... } }