Junit-简单使用

Assert.assertEquals作用
junit.framework包下的Assert提供了多个断言方法. 主用于比较测试传递进去的两个参数.
Assert.assertEquals()及其重载方法:

  • 两者一致, 程序继续往下运行
  • 两者不一致, 中断测试方法, 抛出异常信息 AssertionFailedError
Assert.assertEquals(true, arry.contains("hello"));
Assert.assertEquals(39991L, aa.getLong("key3", 0L));
Assert.assertEquals(true, bb.getBoolean("key4", false));
Assert.assertEquals(5.3f, cc.getFloat("key5", 0.f));
Assert.assertEquals(99, dd.getInt("key6", 1));
Assert.assertEquals("如果打印本信息, 证明参数不相等", 10L, 10);

你可能感兴趣的:(Junit-简单使用)