我需要将以下 Eclipse 模板移植到 IntelliJ IDEA
/**
* See method name.
*/
@${testType:newType(org.junit.Test)}
public void should${testdesc}() {
// given ${cursor}
${staticImport:importStatic('org.hamcrest.Matchers.*', 'org.junit.Assert.*', 'org.mockito.BDDMockito.*')}
// when
// then
}
到目前为止我得到的是
/**
* See method name.
*/
@org.junit.Test
public void should$EXPR$() {
// given $END$
${staticImport:importStatic('org.hamcrest.Matchers.*', 'org.junit.Assert.*', 'org.mockito.BDDMockito.*')}
// when
// then
}
然后勾选Shorten FQ names
标志。
${staticImport:importStatic()}
表达式的 IDEA 等效项是什么?