01: /*
02: * JavaCodeFoldingTest.java
03: *
04: * Created on 24 January 2005, 16:49
05: */
06:
07: package java_editor_actions;
08:
09: import editor_actions.EditorActionsTest;
10: import lib.JavaEditorTestCase;
11:
12: /**
13: *
14: * @author mato
15: */
16: public class JavaEditorActionsTest extends EditorActionsTest {
17:
18: /** Creates a new instance of JavaCodeFoldingTest */
19: public JavaEditorActionsTest(String testMethodName) {
20: super (testMethodName);
21: }
22:
23: protected String getDefaultProjectName() {
24: return JavaEditorTestCase.PROJECT_NAME;
25: }
26:
27: }
|