为什么有时我必须将 @Test 放在单独的行中才能在 Eclipse 中工作

发布于 2024-10-29 02:28:05 字数 193 浏览 1 评论 0原文

以下内容不起作用

 @Test public void testBlah() throws Exception

有时我必须使用

@Test
public void testBlah() throws Exception

我想知道为什么?

The following does not work sometimes

 @Test public void testBlah() throws Exception

I have to use

@Test
public void testBlah() throws Exception

I want to know why?

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

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

发布评论

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

评论(1

裂开嘴轻声笑有多痛 2024-11-05 02:28:05

我想,因为在前面的 Test 中没有导入,而当您按 时,它往往会在您没有注意到的情况下自动修复导入,并且您会得到感觉它不能在同一条线上工作。

我想不出任何其他原因。

I guess, because in the former Test is not imported, whereas when you press <enter> that tends to fix the import automatically without you noticing it, and you get the feeling that it doesn't work on the same line.

I can't think of any other reason.

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