Junit:我如何使用断言来检查 String > 0

发布于 2024-12-04 21:46:07 字数 302 浏览 0 评论 0原文

我有一个字符串,我想检查该字符串是否 > 0 使用断言

尝试: 使用assertFalse我无法设置2个字符串:我的值和“0”。

还有另一种说法吗:assertThat "myString"> “0”?

我的目的:

myTable.getValue =>this return a string : "20"
I would like to check that this string is > or different from "0" 

谢谢

I have a String and I would like to check that this string is > 0
using assert

trying :
using assertFalse I can't set 2 strings : my value and "0" .

Is there another way to say : assertThat "myString"> "0" ?

my purpose :

myTable.getValue =>this return a string : "20"
I would like to check that this string is > or different from "0" 

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

明媚如初 2024-12-11 21:46:07

为了安全起见,您确实想将比较作为数字进行。所以你想要类似的东西

assertTrue(Integer.parseInt(myTable.getValue()) > 0)

You really want to do the comparison as a number, for safety. So you want something like

assertTrue(Integer.parseInt(myTable.getValue()) > 0)
风吹过旳痕迹 2024-12-11 21:46:07

此外,您可能想要使用 assertThat 样式:

assertThat(myTable.length()).isGreaterThan(0);

您需要导入 org.assertj.core.api.Assertions.assertThat 静态方法。我更喜欢这种方法,因为它可以增强测试的可读性。

Additionally, with assertThat style you may want to use:

assertThat(myTable.length()).isGreaterThan(0);

you will need to import org.assertj.core.api.Assertions.assertThat static methods. I'd prefer this method as enhance test readability.

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