Junit 断言
从表中,我获取字符串列表,并想检查当 val!= "A" 时,表列表中是否存在字符串“x”:
for (int i = 0; i < NbRow; j++)
{
if (val[i] == "A")
{
assertFalse("");
}
else
{
list.add(myTable.getValue(j, 0));
//need to check here the string exists in the list using assertTrue ?
}
}
}
如何使用断言检查字符串 X 是否存在?
From a Table, I get list of String's and would like to check that when val!= "A" , a string "x" exist in the list of table :
for (int i = 0; i < NbRow; j++)
{
if (val[i] == "A")
{
assertFalse("");
}
else
{
list.add(myTable.getValue(j, 0));
//need to check here the string exists in the list using assertTrue ?
}
}
}
How do I check that string X exists using assertion ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许像
Perhaps something like
如果字符串位于列表或集合中,则
If the strings are in a List or Set then