Skip to content

Commit

Permalink
Rename too long testnames
Browse files Browse the repository at this point in the history
  • Loading branch information
niktrop committed Mar 3, 2014
1 parent e32f9a7 commit 8b57b0d
Show file tree
Hide file tree
Showing 909 changed files with 366 additions and 366 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ abstract class ScalaDebuggerTestCase extends ScalaCompilerTestBase {
}

private def testDataBasePath: Path = {
val testClassName = this.getClass.getSimpleName
val testClassName = this.getClass.getSimpleName.stripSuffix("Test")
val path = FileSystems.getDefault.getPath(TestUtils.getTestDataPath, "debugger", testClassName, getTestName(true))
if (path.toFile.exists()) path
else Files.createDirectories(path)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.jetbrains.plugins.scala.debugger.ScalaDebuggerTestCase
* Nikolay.Tropin
* 8/2/13
*/
class InAnonimousFunctionsEvaluationTest extends ScalaDebuggerTestCase{
class InAnonFunEvaluationTest extends ScalaDebuggerTestCase{

def testFunctionValue() {
addFileToProject("Sample.scala",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import org.jetbrains.plugins.scala.debugger.ScalaDebuggerTestCase
*/

class ScalaFieldEvaluationTest extends ScalaDebuggerTestCase {
def testStaticScalaFromPackageObject() {
def testStaticScalaFromPackObj() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import org.jetbrains.plugins.scala.debugger.ScalaDebuggerTestCase
*/

class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
def testSimpleLocalFunction() {
def testSimple() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand All @@ -26,7 +26,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalFunctionWithParameters() {
def testLocalWithParameters() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand All @@ -45,7 +45,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testSimpleLocalFunctionWithParameters() {
def testSimpleLocalWithParams() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand All @@ -64,7 +64,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testSimpleLocalFunctionWithParametersWithDifferentParameters1() {
def testSimpleLocalWithDiffParams1() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand All @@ -84,7 +84,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testSimpleLocalFunctionWithParametersWithDifferentParameters2() {
def testSimpleLocalWithDiffParams2() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand All @@ -104,7 +104,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testSimpleLocalFunctionWithParametersWithDifferentParameters3() {
def testSimpleLocalWithDiffParams3() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand All @@ -124,7 +124,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalFunctionWithLocalObject() {
def testLocalWithLocalObject() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand All @@ -144,7 +144,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalFunctionWithField() {
def testLocalWithField() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand Down Expand Up @@ -218,7 +218,7 @@ class ScalaLocalMethodEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalWithDefaultAndNamedParameters() {
def testLocalWithDefaultAndNamedParams() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ScalaLocalVariablesEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalClassParameter() {
def testLocalClassParam() {
addFileToProject("Sample.scala",
"""
|class A(x: Int) {
Expand Down Expand Up @@ -74,7 +74,7 @@ class ScalaLocalVariablesEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalFromForStatementFromOutside() {
def testLocalFromForStmtFromOut() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand Down Expand Up @@ -221,7 +221,7 @@ class ScalaLocalVariablesEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalOuterFromClojureAndClass() {
def testLocalFromClojureAndClass() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand Down Expand Up @@ -360,7 +360,7 @@ class ScalaLocalVariablesEvaluationTest extends ScalaDebuggerTestCase {
}
}

def testLocalMethodLocalMethodLocalClassLocalMethod() {
def testLocMethLocMethLocClassLocMeth() {
addFileToProject("Sample.scala",
"""
|object Sample {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/testStaticScalaFromPackageObject.iml" filepath="$PROJECT_DIR$/testStaticScalaFromPackageObject.iml" />
<module fileurl="file://$PROJECT_DIR$/testStaticScalaFromPackObj.iml" filepath="$PROJECT_DIR$/testStaticScalaFromPackObj.iml" />
</modules>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true">
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/testLocalWithDefaultAndNamedParameters.iml" filepath="$PROJECT_DIR$/testLocalWithDefaultAndNamedParameters.iml" />
<module fileurl="file://$PROJECT_DIR$/testLocalWithDefaultAndNamedParams.iml" filepath="$PROJECT_DIR$/testLocalWithDefaultAndNamedParams.iml" />
</modules>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true">
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/testLocalClassParameter.iml" filepath="$PROJECT_DIR$/testLocalClassParameter.iml" />
<module fileurl="file://$PROJECT_DIR$/testLocalWithField.iml" filepath="$PROJECT_DIR$/testLocalWithField.iml" />
</modules>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true">
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/testLocalFunctionWithField.iml" filepath="$PROJECT_DIR$/testLocalFunctionWithField.iml" />
<module fileurl="file://$PROJECT_DIR$/testLocalWithLocalObject.iml" filepath="$PROJECT_DIR$/testLocalWithLocalObject.iml" />
</modules>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true">
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/testSimpleLocalFunction.iml" filepath="$PROJECT_DIR$/testSimpleLocalFunction.iml" />
<module fileurl="file://$PROJECT_DIR$/testLocalWithParameters.iml" filepath="$PROJECT_DIR$/testLocalWithParameters.iml" />
</modules>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true">
Expand Down
Binary file not shown.
Loading

0 comments on commit 8b57b0d

Please sign in to comment.