Annotations:
@BeforeClass: Executed once, before all the test methods invocation.
@Before: Executed before each test method invokation.
@Test(timeout = 100): Fail if longer than 100 milliseconds.
@Test(excepted = Exception.class): Fail if Exception is not thrown.
Issues:
java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing
Old version of Junit, add junit library in build path of project, choose JUNIT4.