junit 4.8.1 * junit3.x 方法名必须是test开始 * junit4.x 在方法前添加@Test(注解) * @Before是在执行@Test前执行 * @After是在@Test之后执行 * @Ignore忽略这个方法