Junit 断言

发布于 2024-12-05 08:46:44 字数 406 浏览 0 评论 0原文

从表中,我获取字符串列表,并想检查当 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

农村范ル 2024-12-12 08:46:44

也许像

List<String> list = new ArrayList<String>();
for(int i=0;i<NB_Row;i++){
    list.add(myTable.getValue(row,col))
}
Assert.assertTrue(list.contains("file2"));

Perhaps something like

List<String> list = new ArrayList<String>();
for(int i=0;i<NB_Row;i++){
    list.add(myTable.getValue(row,col))
}
Assert.assertTrue(list.contains("file2"));
独留℉清风醉 2024-12-12 08:46:44

如果字符串位于列表或集合中,则

assertTrue(list.contains("rohg")); 

If the strings are in a List or Set then

assertTrue(list.contains("rohg")); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文