码迷,mamicode.com
首页 > 其他好文 > 详细

JUnit Assert方法总结

时间:2017-08-03 15:00:05      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:page   bdr   find   xpath   fail   javadoc   javase   ati   判断   

技术分享

 

assertTrue with error message

public static void assertTrue(String message,boolean condition)

Asserts that a condition is true. If it isn‘t it throws an AssertionError with the given message.

示例:

boolean value=webDriver.findElement(By.xpath("......")).isDisplay();  //判断是否显示xx

assertTrue("Failed to go to the Login page", value);

如果value的值是true则运行成功,如果value的值是false则运行失败并打印出信息“Failed to go to the Login page”。

 

assertTrue without error message

public static void assertTrue(boolean condition)
Asserts that a condition is true. If it isn‘t it throws an AssertionError without a message.

JUnit Assert方法总结

标签:page   bdr   find   xpath   fail   javadoc   javase   ati   判断   

原文地址:http://www.cnblogs.com/meimeilove/p/7279318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!