gpt4 book ai didi

java - 如何在 Eclipse 中运行简单的 JUnit 测试

转载 作者:行者123 更新时间:2023-11-29 06:24:10 25 4
gpt4 key购买 nike

这是我的代码:

package tests;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

class StatementTester extends TestCase {
public StatementTester (String name) {
super(name);
}

protected void setUp() {
}

protected void tearDown() {
}

public void test1() {
System.out.println("testing");
assert(true);
}

public static Test suite() {
TestSuite suite= new TestSuite();
suite.addTest(new StatementTester("test1"));
return suite;
}

public static void main (String[] args) {
junit.textui.TestRunner.run (suite());
}
}

当我尝试运行它时,我收到以下错误消息:

.E
Time: 0.001
There was 1 error:
1) test1(tests.StatementTester) at tests.StatementTester.main(StatementTester.java:30)

FAILURES!!!
Tests run: 1, Failures: 0, Errors: 1

我的代码基于 Martin Fowler 的“重构:改进现有代码的设计”第 4 章中给出的示例(虽然我对其进行了简化,但基本结构是相同的)。此外,我运行 eclipse 3.5.1 并使用 JUnit 3 库(不知道它有多重要,但无论如何......)

你能给我任何关于我做错了什么的提示吗?

最佳答案

首先,我想说的是,eclipse 中有一个功能可以让您运行测试而无需在测试类中声明一个 main。

这是一个教程,将向您展示如何做到这一点(使用 JUnit4): http://www.vogella.de/articles/JUnit/article.html

关于java - 如何在 Eclipse 中运行简单的 JUnit 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5636154/

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