2013-01-21 82 views
4

在Eclipse中,是否可以避免換行以獲得更好的jmockit可讀性而不關閉代碼格式化程序?Eclipse避免爲jmockit換行

通緝:

@Test 
public void testRegisterNodeModelFactory() { 
    new Expectations() {{ 
    RepositoryManager.getInstance(); times = CALLED; 
    }}; 

    invoke(_measureModuleInstall, "registerNodeModeFactory"); 
} 

目前:

@Test 
public void testRegisterNodeModelFactory() { 
    new Expectations() {{ 
    RepositoryManager.getInstance(); 
    times = CALLED; 
    }}; 

    invoke(_measureModuleInstall, "registerNodeModeFactory"); 
} 
+2

有你看着身邊的那些代碼區關閉格式化? http://stackoverflow.com/questions/1820908/how-to-turn-off-the-eclipse-code-formatter-for-certain-sections-of-java-code –

+0

是的,但我想要一些'更清潔'。 – sansp00

+0

我在IntelliJ IDEA中遇到了同樣的問題,我也無法解決。 –

回答

0

禁用代碼格式化了的代碼的某些部分:

// @formatter:off 
RepositoryManager.getInstance(); times = CALLED; 
// @formatter:on 
+1

這將禁用整個格式化程序。是否有可能只禁用換行符? – T3rm1