http://www.junit.org/index.htm
여기서 다운 받으실 수 있습니다.

JUnit 4.3 Released
관련 포스트가 올라와서 알 수 있었네요.

1. 배열의 동일함을 비교하기 위한 메소드 assertEqulas(배열, 배열)이 디프리케이티드 됐습니다. 대신에 가독성이 훨씬 좋은 Assert.assertArrayEquals 를 사용하면 된다는 군요.

2. @Ignore 어노테이션을 클래스에도 붙일 수 있게 됐습니다.

3. 원래는 @RunWith(AllTests.class)를 클래스에 붙여주면 3쩜 대의 suite()을 4쩜 대의 러너로 실행할 수 있었는데 이젠 그럴 필요가 없다네요. 하지만 예외가 있는듯..

4. 배열 비교 할 때 에러 메시징이 향상 됐습니다.

5. 그리고 다음의 버그들을 고쳤다네요.
    * Bug fix: Inaccessible base class is caught at test construction time.
    * Bug fix: Circular suites are caught at test construction time.
    * Bug fix: Test constructors that throw exceptions are reported correctly.
    * For committers and extenders
          o Sources now are in a separate "src" directory (this means a big break in the CVS history)
          o Improved documentation in Request, RunWith