开发者

No tests found using JMock

开发者 https://www.devze.com 2022-12-17 18:55 出处:网络
having problems trying to run by unit test with Ant, my test class uses Jmock; @RunWith(JMock.class) and annotations to identify each test method. When i attempt to build with ant (1.7.1) i get a

having problems trying to run by unit test with Ant, my test class uses Jmock;

@RunWith(JMock.class)

and annotations to identify each test method. When i attempt to build with ant (1.7.1) i get a

[junit] No tests found in MyTestClass 开发者_开发知识库

[junit] junit.framework.AssertionFailedError: No tests found

Any suggestions?


What version of JUnit are you using? It looks like 3.8 to me (although I could be mistaken) but the package structure for JUnit 4.x is: org.junit and not junit.framework

The @RunWith runner as defined by the JMock guys is only valid with JUnit 4.x


If you're using JUnit 3, you should inherit from MockObjectTestCase instead of using the Runner

0

精彩评论

暂无评论...
验证码 换一张
取 消