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.
当我将单元测试中的默认方法名称 testSomething() 方法重命名为其他名称时,我收到“不可运行”错误消息。我想知道我应该在某处更改设置吗?
如果您使用的是 jUnit 3,这可以帮助您:“使用 JUnit 3,要定义测试,必须将类名命名为 MyClassTest,从 TestCase 扩展,并且所有测试方法名称都以 'test' 开头,如'testMyMethod()'"
http://java.dzone.com/articles/unit-test-naming-conventions