move FileTest.java to j2k.ast

This commit is contained in:
Sergey Ignatov
2011-11-04 17:31:24 +04:00
parent 8789d2b179
commit f8adc88299
3 changed files with 5 additions and 2 deletions
+2
View File
@@ -30,6 +30,7 @@
<component name="EntryPointsManager">
<entry_points version="2.0" />
</component>
<component name="IdProvider" IDEtalkID="85E718DEBECB31403A7B26BEC4D25543" />
<component name="Palette2">
<group name="Swing">
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
@@ -165,5 +166,6 @@
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
<component name="WebServicesPlugin" addRequiredLibraries="true" />
</project>
@@ -197,7 +197,7 @@ public abstract class JetTestCaseBase extends LightDaemonAnalyzerTestCase {
}
@NotNull
static String toSingleLine(String string) {
public static String toSingleLine(String string) {
return prettify(string.replaceAll("\n", " "));
}
}
@@ -1,6 +1,7 @@
package org.jetbrains.jet.j2k;
package org.jetbrains.jet.j2k.ast;
import junit.framework.Assert;
import org.jetbrains.jet.j2k.JetTestCaseBase;
/**
* @author ignatov