Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检查给定的输入是否在 1 到 100(整数)的范围内。
如何 为此任务编写JUnit 测试用例?
Assert.assertTrue(value >= 1 && value <= 100);