Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@novell.com>2009-11-09 15:07:22 +0300
committerMike Krüger <mkrueger@novell.com>2009-11-09 15:07:22 +0300
commit7535cec06f812ed03186ceaabd4e514b5ac4d366 (patch)
tree6e167cac64d89d431f0f472e02478bb2d3133d84 /main/tests
parente2880ff11d1cd4e82cb97ae476afe6940a4c1815 (diff)
* Makefile.am:
* UnitTests.csproj: * MonoDevelop.Refactoring/BaseRefactorerTests.cs: Added some tests for the base refactorer indenting / remove indenting functions. svn path=/trunk/monodevelop/; revision=145725
Diffstat (limited to 'main/tests')
-rw-r--r--main/tests/UnitTests/ChangeLog8
-rw-r--r--main/tests/UnitTests/Makefile.am1
-rw-r--r--main/tests/UnitTests/MonoDevelop.Refactoring/BaseRefactorerTests.cs79
-rw-r--r--main/tests/UnitTests/UnitTests.csproj1
4 files changed, 89 insertions, 0 deletions
diff --git a/main/tests/UnitTests/ChangeLog b/main/tests/UnitTests/ChangeLog
index 8a6ab70134..8f7243c6f2 100644
--- a/main/tests/UnitTests/ChangeLog
+++ b/main/tests/UnitTests/ChangeLog
@@ -1,3 +1,11 @@
+2009-11-09 Mike Krüger <mkrueger@novell.com>
+
+ * Makefile.am:
+ * UnitTests.csproj:
+ * MonoDevelop.Refactoring/BaseRefactorerTests.cs: Added some
+ tests for the base refactorer indenting / remove indenting
+ functions.
+
2009-11-06 Mike Krüger <mkrueger@novell.com>
* MonoDevelop.CSharpBinding/CodeCompletionBugTests.cs: Added
diff --git a/main/tests/UnitTests/Makefile.am b/main/tests/UnitTests/Makefile.am
index f01bbb486b..18378c6ccb 100644
--- a/main/tests/UnitTests/Makefile.am
+++ b/main/tests/UnitTests/Makefile.am
@@ -78,6 +78,7 @@ FILES = \
MonoDevelop.Projects/TestProjectsChecks.cs \
MonoDevelop.Projects/TextFormatterTests.cs \
MonoDevelop.Projects/WorkspaceTests.cs \
+ MonoDevelop.Refactoring/BaseRefactorerTests.cs \
MonoDevelop.Refactoring/CreateBackingStoreTests.cs \
MonoDevelop.Refactoring/DeclareLocalTests.cs \
MonoDevelop.Refactoring/ExtractMethodTests.cs \
diff --git a/main/tests/UnitTests/MonoDevelop.Refactoring/BaseRefactorerTests.cs b/main/tests/UnitTests/MonoDevelop.Refactoring/BaseRefactorerTests.cs
new file mode 100644
index 0000000000..859d7a3679
--- /dev/null
+++ b/main/tests/UnitTests/MonoDevelop.Refactoring/BaseRefactorerTests.cs
@@ -0,0 +1,79 @@
+//
+// BaseRefactorerTests.cs
+//
+// Author:
+// Mike Krüger <mkrueger@novell.com>
+//
+// Copyright (c) 2009 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+
+using System;
+using NUnit.Framework;
+using MonoDevelop.Projects.CodeGeneration;
+
+namespace MonoDevelop.Refactoring
+{
+
+ [TestFixture()]
+ public class BaseRefactorerTests
+ {
+ [Test()]
+ public void TestRemoveIndentWithUnixLineEndings ()
+ {
+ string unindented = BaseRefactorer.RemoveIndent ("\n\t\n\tprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\n\t{\n\t}\n");
+ Assert.AreEqual ("\n\nprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\n{\n}\n", unindented);
+ }
+
+ [Test()]
+ public void TestRemoveIndentWithMacLineEndings ()
+ {
+ string unindented = BaseRefactorer.RemoveIndent ("\r\t\r\tprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r\t{\r\t}\r");
+ Assert.AreEqual ("\r\rprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r{\r}\r", unindented);
+ }
+
+ [Test()]
+ public void TestRemoveIndentWithWindowsLineEndings ()
+ {
+ string unindented = BaseRefactorer.RemoveIndent ("\r\n\t\r\n\tprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r\n\t{\r\n\t}\r\n");
+ Assert.AreEqual ("\r\n\r\nprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r\n{\r\n}\r\n", unindented);
+ }
+
+ [Test()]
+ public void TestIndentIndentWithUnixLineEndings ()
+ {
+ string indented = BaseRefactorer.Indent ("\n\nprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\n{\n}\n", "\t", false);
+ Assert.AreEqual ("\n\t\n\tprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\n\t{\n\t}\n\t", indented);
+ }
+
+ [Test()]
+ public void TestIndentIndentWithMacLineEndings ()
+ {
+ string indented = BaseRefactorer.Indent ("\r\rprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r{\r}\r", "\t", false);
+ Assert.AreEqual ("\r\t\r\tprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r\t{\r\t}\r\t", indented);
+ }
+
+ [Test()]
+ public void TestIndentIndentWithWindowsLineEndings ()
+ {
+ string indented = BaseRefactorer.Indent ("\r\n\r\nprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r\n{\r\n}\r\n", "\t", false);
+ Assert.AreEqual ("\r\n\t\r\n\tprotected virtual void OnButton4Clicked (object sender, System.EventArgs e)\r\n\t{\r\n\t}\r\n\t", indented);
+ }
+ }
+}
diff --git a/main/tests/UnitTests/UnitTests.csproj b/main/tests/UnitTests/UnitTests.csproj
index d6c52066c4..fe1a6972cf 100644
--- a/main/tests/UnitTests/UnitTests.csproj
+++ b/main/tests/UnitTests/UnitTests.csproj
@@ -215,6 +215,7 @@
<Compile Include="MonoDevelop.Projects.Gui\CompletionListWindowTests.cs" />
<Compile Include="MonoDevelop.AspNet\AspNetCompletionTests.cs" />
<Compile Include="MonoDevelop.AspNet\AspNetTesting.cs" />
+ <Compile Include="MonoDevelop.Refactoring\BaseRefactorerTests.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\..\md.targets" />