package de.plushnikov.intellij.plugin.action.delombok; import com.intellij.openapi.actionSystem.AnAction; import de.plushnikov.intellij.plugin.action.LombokLightActionTestCase; public class DelombokDelegateActionTest extends LombokLightActionTestCase { protected AnAction getAction() { return new DelombokDelegateAction(); } @Override protected String getBasePath() { return super.getBasePath() + "/action/delombok/delegate"; } public void testDelegateOnField() throws Exception { doTest(); } public void testDelegateOnMethod() throws Exception { doTest(); } }