JUnit4 测试运行器

发布于 2024-08-23 02:32:08 字数 95 浏览 7 评论 0原文

我的 Java 测试无法编译,我运行它并得到:

没有junit测试 找不到主类(在运行配置中指定)

My Java test do not compile, I run it and have:

no junit tests
could not find main class (specified in run-configuration)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谷夏 2024-08-30 02:32:08

您的类中没有任何 @Test 方法。

JUnit4 查找用 @Test 注释的方法 - 如果在类中找不到任何方法,则它完全忽略该类。

You don't have any @Test methods in your class.

JUnit4 looks for methods annotated with @Test - if it doesn't find any in a class, it omits that class completely.

海之角 2024-08-30 02:32:08

我同意彼得的观点

@Test 
    public void testSomeBehavior() { 
        assertEquals("Empty list should have 0 elements", 0, emptyList.size()); 
    } 

I agree with Peter

@Test 
    public void testSomeBehavior() { 
        assertEquals("Empty list should have 0 elements", 0, emptyList.size()); 
    } 

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文