Java: Out with the Old, In with the New

后端 未结 30 1966
遥遥无期
遥遥无期 2020-12-22 16:11

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

30条回答
  •  一整个雨季
    2020-12-22 16:32

    Changing JUnit 3-style tests:

    class Test extends TestCase {
        public void testYadaYada() { ... }
    }
    

    to JUnit 4-style tests:

    class Test {
       @Test public void yadaYada() { ... }
    }
    

提交回复
热议问题