Browse Source

Fixed build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@3043 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 17 years ago
parent
commit
48fec394b6
  1. 6
      src/AddIns/Misc/SearchAndReplace/Test/FindNextWithCursorAtEndTestFixture.cs
  2. 4
      src/AddIns/Misc/SearchAndReplace/Test/ForwardIteratorWithEmptyTextBufferTestFixture.cs
  3. 4
      src/AddIns/Misc/SearchAndReplace/Test/ForwardTextIteratorPositionIsEndOffsetTestFixture.cs
  4. 2
      src/AddIns/Misc/SearchAndReplace/Test/MockCurrentDocumentIterator.cs
  5. 2
      src/AddIns/Misc/SearchAndReplace/Test/MockDocument.cs

6
src/AddIns/Misc/SearchAndReplace/Test/FindNextWithCursorAtEndTestFixture.cs

@ -8,11 +8,11 @@
using System; using System;
using ICSharpCode.Core; using ICSharpCode.Core;
using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Document;
using ICSharpCode.SharpDevelop.Tests.Utils; using SearchAndReplace.Tests.Utils;
using NUnit.Framework; using NUnit.Framework;
using SearchAndReplace; using SearchAndReplace;
namespace ICSharpCode.SharpDevelop.Tests namespace SearchAndReplace.Tests
{ {
/// <summary> /// <summary>
/// SD2-857 - The search fails to find a string if the cursor is /// SD2-857 - The search fails to find a string if the cursor is
@ -67,7 +67,7 @@ namespace ICSharpCode.SharpDevelop.Tests
// Search the document. // Search the document.
search.SearchStrategy.CompilePattern(null); search.SearchStrategy.CompilePattern(null);
result = search.FindNext(); result = search.FindNext(null);
} }
[Test] [Test]

4
src/AddIns/Misc/SearchAndReplace/Test/ForwardIteratorWithEmptyTextBufferTestFixture.cs

@ -6,12 +6,12 @@
// </file> // </file>
using System; using System;
using ICSharpCode.SharpDevelop.Tests.Utils; using SearchAndReplace.Tests.Utils;
using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Document;
using SearchAndReplace; using SearchAndReplace;
using NUnit.Framework; using NUnit.Framework;
namespace ICSharpCode.SharpDevelop.Tests namespace SearchAndReplace.Tests
{ {
/// <summary> /// <summary>
/// The fix for SD2-857 highlighted another bug (SD2-1312) in the /// The fix for SD2-857 highlighted another bug (SD2-1312) in the

4
src/AddIns/Misc/SearchAndReplace/Test/ForwardTextIteratorPositionIsEndOffsetTestFixture.cs

@ -6,12 +6,12 @@
// </file> // </file>
using System; using System;
using ICSharpCode.SharpDevelop.Tests.Utils; using SearchAndReplace.Tests.Utils;
using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Document;
using SearchAndReplace; using SearchAndReplace;
using NUnit.Framework; using NUnit.Framework;
namespace ICSharpCode.SharpDevelop.Tests namespace SearchAndReplace.Tests
{ {
/// <summary> /// <summary>
/// The forward text iterator never finishes if the initial /// The forward text iterator never finishes if the initial

2
src/AddIns/Misc/SearchAndReplace/Test/MockCurrentDocumentIterator.cs

@ -8,7 +8,7 @@
using System; using System;
using SearchAndReplace; using SearchAndReplace;
namespace ICSharpCode.SharpDevelop.Tests.Utils namespace SearchAndReplace.Tests.Utils
{ {
public class MockCurrentDocumentIterator : IDocumentIterator public class MockCurrentDocumentIterator : IDocumentIterator
{ {

2
src/AddIns/Misc/SearchAndReplace/Test/MockDocument.cs

@ -9,7 +9,7 @@ using System;
using ICSharpCode.TextEditor.Document; using ICSharpCode.TextEditor.Document;
using ICSharpCode.TextEditor.Undo; using ICSharpCode.TextEditor.Undo;
namespace ICSharpCode.SharpDevelop.Tests.Utils namespace SearchAndReplace.Tests.Utils
{ {
public class MockDocument : IDocument public class MockDocument : IDocument
{ {

Loading…
Cancel
Save