1

我想检查给定的输入是否在 1 到 100(整数)的范围内。

如何 为此任务编写JUnit 测试用例?

4

1 回答 1

1
 Assert.assertTrue(value >= 1 && value <= 100);
于 2012-11-01T10:47:49.300 回答