作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
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/
我是一名优秀的程序员,十分优秀!