标签: junit
我想检查给定的输入是否在1到100(整数)的范围内。
如何为此任务编写 JUnit测试用例?
答案 0 :(得分:1)
Assert.assertTrue(value >= 1 && value <= 100);