gpt4 book ai didi

java - 我的 Junit 测试不工作

转载 作者:行者123 更新时间:2023-11-28 20:50:22 24 4
gpt4 key购买 nike

import static org.junit.Assert.assertEquals;

import org.junit.Test;

public class TextAnalysisTest {

@Test
public void testNumberRange(){
//if i put a number between 1-4 here - Junit will pass the test
//if not - Junit will fail

int [] input = {1, 2, 3, 4};
int min = 1;
int max = 4;
assertEquals(input).isGreaterThanOrEqualTo(min).isLessThanOrEqualTo(max);

System.out.println("test finished");
}


}

我是 Java 的新手,并且真的很想学习。有人可以帮我解决这个问题吗?谢谢。

最佳答案

您必须遍历数组并证明每个值都在最小值和最大值之间。

关于java - 我的 Junit 测试不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49732432/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com