gpt4 book ai didi

junit - 需要一个在 Intellij Idea 中使用 Junit 的示例

转载 作者:行者123 更新时间:2023-12-04 10:59:35 27 4
gpt4 key购买 nike

也许只是我,但我无法理解有关 Intellij Idea 中 Junit 测试集成的文档。我正在寻找的是一个简单的教程示例,例如:
这是一个计算 2+2 的方法,这是一个测试它为 4 的测试类。这是您设置的复选框以使其运行。如果网络上或 Intellij Idea 帮助中已经有这样的内容,请引用我。
我使用 Idea 7.0.4 并想使用 JUnit 3.8 或 4.*。 TIA。

最佳答案

这是我如何在 junit 中使用 intellij 的一个小示例

public class MathTest {  // Press Ctrl-Shift-F10 here to run all tests in class
@Test
public void twoPlusTwo() { // Press Ctrl-Shift-F10 here to run only twoPlusTwo test
assertThat( 2+2, is( 4 ) );
}

@Test
public void twoPlusThree() { // Press Ctrl-Shift-F10 here to run only twoPlusThree test
assertThat( 2+3, is( 5 ) );
}
}

运行一次测试后,它将作为运行“配置”显示在屏幕顶部。然后您可以点击绿色三角形重新运行测试,或者使用调试三角形在启用断点的 Debug模式下运行。

关于junit - 需要一个在 Intellij Idea 中使用 Junit 的示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/320092/

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