From fbceecf1f3599486ec7e1a9b6f27e0603169b79f Mon Sep 17 00:00:00 2001 From: cheptsov Date: Thu, 28 Feb 2013 19:32:36 +0400 Subject: [PATCH] Minor file name refactoring for tests --- ...oldingTestData.simple => DefaultTestData.simple} | 0 testData/FormatterTestDataAfter.simple | 13 ------------- tests/com/simpleplugin/SimpleCodeInsightTest.java | 2 +- 3 files changed, 1 insertion(+), 14 deletions(-) rename testData/{FoldingTestData.simple => DefaultTestData.simple} (100%) delete mode 100644 testData/FormatterTestDataAfter.simple diff --git a/testData/FoldingTestData.simple b/testData/DefaultTestData.simple similarity index 100% rename from testData/FoldingTestData.simple rename to testData/DefaultTestData.simple diff --git a/testData/FormatterTestDataAfter.simple b/testData/FormatterTestDataAfter.simple deleted file mode 100644 index 31492ca75..000000000 --- a/testData/FormatterTestDataAfter.simple +++ /dev/null @@ -1,13 +0,0 @@ -# You are reading the ".properties" entry. -! The exclamation mark can also mark text as comments. -website = http://en.wikipedia.org/ - -language = English -# The backslash below tells the application to continue reading -# the value onto the next line. -message = Welcome to \ - Wikipedia! -# Add spaces to the key -key\ with\ spaces = This is the value that could be looked up with the key "key with spaces". -# Unicode -tab : \u0009 \ No newline at end of file diff --git a/tests/com/simpleplugin/SimpleCodeInsightTest.java b/tests/com/simpleplugin/SimpleCodeInsightTest.java index 460ee7fd9..f293b8bb9 100644 --- a/tests/com/simpleplugin/SimpleCodeInsightTest.java +++ b/tests/com/simpleplugin/SimpleCodeInsightTest.java @@ -49,7 +49,7 @@ public class SimpleCodeInsightTest extends LightCodeInsightFixtureTestCase { CodeStyleManager.getInstance(getProject()).reformat(myFixture.getFile()); } }); - myFixture.checkResultByFile("FormatterTestDataAfter.simple"); + myFixture.checkResultByFile("DefaultTestData.simple"); } public void testRename() {