Junit是一个可编写重复测试的简单框架,是基于Xunit架构的单元测试框架的实例.Junit4最大的改进是大量使用注解(元数据),很多实际执行过程都在Junit的后台做完了,而且写test case 的类不需要继承TestCase,只需要在所要做test case的方法前加@Test 注解即可. 如: import static org.junit.Assert.*; 2 public class TestCaculatorClass { 3 @Test 4 public void test(…
eclipse自带junit包,可右键直接新建junit类 静态引入:import static org.junit.Assert.* assert.*是类,静态引入会引入assert里的所有静态方法,可以不用写类名直接调用静态方法.非常多的assert方法. 运行结果:keep the bar green to keep the code clean. ---------------------- 实战的时候查一下Junit的API/hamcrest api 大部分asset方法都重载了一个可…