org.junit.Assert(断言)

Assert是断言的意思,可以理解为“猜测”,如果猜测错误,则抛出java.lang.AssertionError异常。

 引入jar包
 import static org.junit.Assert.*;   //第一种方式
 import org.junit.Assert;   //第二种方式
1、 Assert.fail ( )
 让测试直接出错,抛出 AssertionError 。(Java.lang.AssertionError)
2 、Assert.fail ( String message )
 让测试直接出错,并在抛出 AssertionError 时输出 message 作为错误提示信息。
3、Assert.assertNull ( Object object )
 猜测 object 为 null,如果不为 null ,抛出 AssertionError 。
4、Assert.assertNull ( String message, Object object )
 猜测 object 为 null。
 如果不为 null ,在抛出 AssertionError 时输出 message 作为错误提示信息。
5、Assert.assertNotNull ( Object object )
 猜测 object 不为 null,如果为 null ,抛出 AssertionError 。
6、Assert.assertNotNull(String message, Object object)
 猜测 object 不为 null。
 如果为 null ,在抛出 AssertionError 时输出 message 作为错误提示信息。
7、Assert.assertSame ( Object expected, Object actual )
 猜测 expected 对象和 actual 对象引用的是同一个对象。
 如果不同,抛出 AssertionError 。
8、Assert.assertSame ( String message, Object expected, Object actual )
猜测 expected 对象和 actual 对象引用的是同一个对象。
如果不同,在抛出 AssertionError 时输出 message 作为错误提示信息。
9、Assert.assertNotSame ( Object expected, Object actual )
猜测 expected 对象和 actual 对象引用不同的对象。
如果相同,抛出 AssertionError 。
10、Assert.assertNotSame ( String message, Object expected, Object actual )
猜测 expected 对象和 actual 对象引用不同的对象。
如果相同,在抛出 AssertionError 时输出 message 作为错误提示信息。
11、Assert.assertTrue ( boolean condition )
猜测 condition 为 true 。
如果为 false ,抛出 AssertionError 。
12、Assert.assertTrue ( String message, boolean condition )
猜测 condition 为 true 。
如果为 false , 在抛出 AssertionError 时输出 message 作为错误提示信息。
13、Assert.assertFalse ( boolean condition )
猜测 condition 为 false 。
如果为 true , 抛出 AssertionError 。
14、Assert.assertFalse ( String message, boolean condition )
猜测 condiiton 为 false 。
如果为 true , 在抛出 AssertionError 时输出 message 作为错误提示信息。
15、Assert.assertEquals ( long expected, long actual )
猜测两个 long 类型 expected 和 actual 的值相等。
如果不相等,抛出 AssertionError 。
16、Assert.assertEquals ( String message, long expected, long actual )
猜测两个 long 类型 expected 和 actual 的值相等。
如果不相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
17、Assert.assertNotEquals ( long unexpected, long actual )
猜测两个 long 类型 unexpected 和 actual 的值不相等。
如果相等,抛出 AssertionError 。
18、Assert.assertNotEquals ( String message, long unexpected, long actual )
猜测两个 long 类型 expected 和 actual 的值不相等。
如果相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
19、Assert.assertEquals(Object expected, Object actual)
猜测两个对象相等。
如果不相等,抛出 AssertionError 。
20、Assert.assertEquals(String message, Object expected, Object actual)
猜测两个对象相等。
如果不相等,在抛出 AssertionError 时输出 message 作为错误提示信息。

注 ---- assertSame()和assertEquals()的区别见参考文章:JUnit中assertEquals和assertSame方法的不同

21、Assert.assertNotEquals ( Object unexpected, Object actual )
猜测两个对象不相等。
如果相等,抛出 AssertionError 。
22、Assert.assertNotEquals ( String message, Object unexpected, Object actual )
猜测两个对象不相等。
如果相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
23、Assert.assertEquals ( float expected, float actual, float delta )
 猜测两个 float 类型 expect 和 actual 在 delta 偏差值下相等
 如果不相等,抛出 AssertionError 。
 //例1
 Assert.assertEquals(1.1, 1.3, 0.2)    //Pass
 //例2
 Assert.assertEquals(1.3, 1.1, 0.2)    //Pass
 //例3
 Assert.assertEquals(1.1, 1.3, 0.1)    //AssertionError
 //例4
 Assert.assertEquals(1.3, 1.1, 0.1)    //AssertionError
24、Assert.assertEquals ( String message, float expected, float actual, float delta )
 猜测两个 float 类型 expect 和 actual 在 delta 偏差值下相等
 如果不相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
 //例1
 Assert.assertEquals("Not equal !",1.1, 1.3, 0.2)    //Pass
 //例2
 Assert.assertEquals("Not equal !",1.3, 1.1, 0.2)    //Pass
 //例3
 Assert.assertEquals("Not equal !",1.1, 1.3, 0.1)    //AssertionError : Not equal !
 //例4
 Assert.assertEquals("Not equal !",1.3, 1.1, 0.1)    //AssertionError : Not equal !
25、Assert.assertNotEquals ( float unexpected, float actual, float delta )
 猜测两个 float 类型 unexpected 和 actual 在 delta 偏差值下不相等
 如果相等,抛出 AssertionError 。
 //例1
 Assert.assertNotEquals(1.1, 1.3, 0.1)    //Pass
 //例2
 Assert.assertNotEquals(1.3, 1.1, 0.1)    //Pass
 //例3
 Assert.assertNotEquals(1.1, 1.3, 0.2)    //AssertionError
 //例4
 Assert.assertNotEquals(1.3, 1.1, 0.2)    //AssertionError
26、Assert.assertNotEquals ( String message, float unexpected, float actual, float delta )
 猜测两个 float 类型 expect 和 actual 在 delta 偏差值下不相等
 如果相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
 //例1
 Assert.assertNotEquals("Equal !",1.1, 1.3, 0.1)    //Pass
 //例2
 Assert.assertNotEquals("Equal !",1.3, 1.1, 0.1)    //Pass
 //例3
 Assert.assertNotEquals("Equal !",1.1, 1.3, 0.2)    //AssertionError : Equal !
 //例4
 Assert.assertNotEquals("Equal !",1.3, 1.1, 0.2)    //AssertionError : Equal !
27、Assert.assertEquals ( long expected, long actual, long delta )
猜测两个 long 类型 expected 和 actual 在 delta 偏差值下相等
如果不相等,抛出 AssertionError 。
28、Assert.assertEquals ( String message, long expected, long actual, long delta )
猜测两个 long 类型 expect 和 actual 在 delta 偏差值下相等
如果不相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
29、Assert.assertNotEquals ( long unexpected, long actual, long delta )
猜测两个 long 类型 unexpected 和 actual 在 delta 偏差值下不相等
如果相等,抛出 AssertionError 。
30、Assert.assertNotEquals ( String message, long unexpected, long actual, long delta )
猜测两个 long 类型 expect 和 actual 在 delta 偏差值下不相等
如果相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
31~37、Assert.assertArrayEquals ( T[] expected, T[] actual )
 猜测两个相同类型的数组的元素一一对应相等。
 如果不相等,抛出 AssertionError 。
 T 支持的类型有 int、byte、char、long、short、boolean、Object
38~44、Assert.assertArrayEquals ( String message, T[] expected, T[] actual )
 猜测两个相同类型的数组的元素一一对应相等。
 如果不相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
 T 支持的类型有 int、byte、char、long、short、boolean、Object
44~45、Assert.assertArrayEquals ( T[] expected, T[] actual, T delta )
 猜测两个相同类型的数组的元素,在 delte 偏差值下一一对应相等。
 如果不相等,抛出 AssertionError 。
 T 支持的类型有 float、double
46~47、Assert.assertArrayEquals ( String message, T[] expected, T[] actual, T delta )
 猜测两个相同类型的数组的元素,在 delte 偏差值下一一对应相等。
 如果不相等,在抛出 AssertionError 时输出 message 作为错误提示信息。
 T 支持的类型有 float、double
48、Assert.assertThat ( T actual, Matcher<? super T> matcher )
 猜测 actual 的值符合规则 matcher。
 如果不符合,抛出 AssertionError 。
 //例1
 Assert.assertThat(1, is(1));               //Pass
 //例2
 Assert.assertThat(1, greaterThan(0));      //Pass
 //例3
 Assert.assertThat(1, is(0));               //AssertionError
 //例4
 Assert.assertThat(1, greaterThan(1));      //AssertionError

注:Matcher 十分灵活

参考文档: org.hamcrest.Matchers

 引入包
 import static org.hamcrest.Matchers.*
49、Assert.assertThat ( String reason, T actual, Matcher<? super T> matcher )
 猜测 actual 的值符合规则 matcher。
 如果不符合,在抛出 AssertionError 时输出 reason 作为错误提示信息。
 //例1
 Assert.assertThat("not match reason: ...", 1, is(1));          //Pass
 //例2
 Assert.assertThat("not match reason: ...",1, greaterThan(0));  //Pass
 //例3
 Assert.assertThat("not match reason: ...",1, is(0));           //AssertionError : not match reason : ...
 //例4
 Assert.assertThat("not match reason: ...",1, greaterThan(1));  //AssertionError : not match reason : ...

最新文章

  1. PAT树_层序遍历叶节点、中序建树后序输出、AVL树的根、二叉树路径存在性判定、奇妙的完全二叉搜索树、最小堆路径、文件路由
  2. iOS-应用上架
  3. Line segment matching
  4. SVEditor 1.3.6 发布
  5. svn分支管理进行迭代开发
  6. MVVM学习笔记
  7. Linux常用命令大全(2)
  8. uva 10976 Fractions Again(简单枚举)
  9. Linux最大文件打开数
  10. GZip 压缩及解压缩
  11. python中经典类和新式类的区别
  12. Add Zabbix Agent
  13. JDK8新增接口的默认方法与静态方法
  14. SkylineGlobe 如何二次开发获取三维模型的BBOX和设置Tint属性
  15. java解析Json字符串之懒人大法
  16. python文件处理复习
  17. 代码整洁之道Clean Code 读后感After Reading
  18. cesium原理篇(三)--地形(1)【转】
  19. keepAlive参数详解
  20. Learning ROS for Robotics Programming - Second Edition(《ROS机器人编程学习-第二版》)

热门文章

  1. NetCore3.1及Vue开发通用RBAC前后端通用框架
  2. Solon 的过滤器 Filter 和两种拦截器 Handler、 Interceptor
  3. 敏杰开题——软工团队项目选择与NABCD分析
  4. OCR-Form-Tools项目试玩记录(二)产品评测
  5. [Java] javaEE
  6. XSF /如何使用xrandr
  7. (代替人类)很多操作都在Settings里面。 5.安装第三方库
  8. 强哥memcache学习笔记
  9. keepalived的脑裂问题与解决
  10. maven build和push image中遇到的坑(学习过程记录)