为什么有时我必须将 @Test 放在单独的行中才能在 Eclipse 中工作
以下内容不起作用
@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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想,因为在前面的
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.