Browse Source

Fixed unit test build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1964 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
a364505d14
  1. 5
      src/AddIns/BackendBindings/CSharpBinding/Test/ExpressionFinder.cs
  2. 7
      src/AddIns/BackendBindings/WixBinding/Test/Utils/MockViewContent.cs
  3. 7
      src/AddIns/Misc/CodeCoverage/Test/NUnitResultsTestFixture.cs
  4. 5
      src/AddIns/Misc/NAntAddIn/Test/CscNAntOutputTestFixture.cs
  5. 1
      src/AddIns/Misc/NAntAddIn/Test/FatalErrorNAntOutputTestFixture.cs
  6. 3
      src/AddIns/Misc/NAntAddIn/Test/InvalidXmlNAntOutputTestFixture.cs
  7. 5
      src/AddIns/Misc/NAntAddIn/Test/NAntErrorAndWarningOutputTestFixture.cs
  8. 1
      src/AddIns/Misc/NAntAddIn/Test/NonFatalErrorNAntOutputTestFixture.cs
  9. 5
      src/AddIns/Misc/NAntAddIn/Test/ReadOnlyPropertyNAntOutputTestFixture.cs
  10. 5
      src/AddIns/Misc/NAntAddIn/Test/TargetDoesNotExistNAntOutputTestFixture.cs
  11. 1
      src/AddIns/Misc/NAntAddIn/Test/VBErrorNAntOutputTestFixture.cs
  12. 1
      src/Main/Base/Test/Services_Navigation/INavigationPointTextFixture.cs
  13. 1
      src/Main/Base/Test/Services_Navigation/NavigationServiceTestFixture.cs
  14. 1
      src/Main/Base/Test/Services_Navigation/TestNavigationPoint.cs

5
src/AddIns/BackendBindings/CSharpBinding/Test/ExpressionFinder.cs

@ -11,6 +11,7 @@ using NUnit.Framework; @@ -11,6 +11,7 @@ using NUnit.Framework;
using CSharpBinding.Parser;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Dom;
using ICSharpCode.SharpDevelop.Dom.CSharp;
namespace CSharpBinding.Tests
{
@ -42,12 +43,12 @@ class Main { @@ -42,12 +43,12 @@ class Main {
}
}";
ExpressionFinder ef;
CSharpExpressionFinder ef;
[SetUp]
public void Init()
{
ef = new ExpressionFinder("test.cs");
ef = new CSharpExpressionFinder("test.cs");
}
void FindFull(string location, string expectedExpression, ExpressionContext expectedContext)

7
src/AddIns/BackendBindings/WixBinding/Test/Utils/MockViewContent.cs

@ -5,14 +5,13 @@ @@ -5,14 +5,13 @@
// <version>$Revision$</version>
// </file>
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor;
using ICSharpCode.SharpDevelop.Gui;
using ICSharpCode.TextEditor;
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Gui;
namespace WixBinding.Tests.Utils
{
/// <summary>

7
src/AddIns/Misc/CodeCoverage/Test/NUnitResultsTestFixture.cs

@ -5,13 +5,14 @@ @@ -5,13 +5,14 @@
// <version>$Revision$</version>
// </file>
using ICSharpCode.Core;
using ICSharpCode.CodeCoverage;
using NUnit.Framework;
using System;
using System.IO;
using System.Resources;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
using ICSharpCode.UnitTesting;
using NUnit.Framework;
namespace ICSharpCode.CodeCoverage.Tests
{

5
src/AddIns/Misc/NAntAddIn/Test/CscNAntOutputTestFixture.cs

@ -5,10 +5,9 @@ @@ -5,10 +5,9 @@
// <version>$Revision$</version>
// </file>
using ICSharpCode.NAntAddIn;
using ICSharpCode.Core;
using NUnit.Framework;
using System;
using ICSharpCode.SharpDevelop;
using NUnit.Framework;
namespace ICSharpCode.NAntAddIn.Tests
{

1
src/AddIns/Misc/NAntAddIn/Test/FatalErrorNAntOutputTestFixture.cs

@ -8,6 +8,7 @@ @@ -8,6 +8,7 @@
using NUnit.Framework;
using ICSharpCode.NAntAddIn;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
using System;
namespace ICSharpCode.NAntAddIn.Tests

3
src/AddIns/Misc/NAntAddIn/Test/InvalidXmlNAntOutputTestFixture.cs

@ -5,10 +5,9 @@ @@ -5,10 +5,9 @@
// <version>$Revision$</version>
// </file>
using ICSharpCode.NAntAddIn;
using System;
using ICSharpCode.SharpDevelop;
using NUnit.Framework;
using ICSharpCode.Core;
namespace ICSharpCode.NAntAddIn.Tests
{

5
src/AddIns/Misc/NAntAddIn/Test/NAntErrorAndWarningOutputTestFixture.cs

@ -5,10 +5,9 @@ @@ -5,10 +5,9 @@
// <version>$Revision$</version>
// </file>
using NUnit.Framework;
using ICSharpCode.NAntAddIn;
using ICSharpCode.Core;
using System;
using ICSharpCode.SharpDevelop;
using NUnit.Framework;
namespace ICSharpCode.NAntAddIn.Tests
{

1
src/AddIns/Misc/NAntAddIn/Test/NonFatalErrorNAntOutputTestFixture.cs

@ -8,6 +8,7 @@ @@ -8,6 +8,7 @@
using NUnit.Framework;
using ICSharpCode.NAntAddIn;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
using System;
namespace ICSharpCode.NAntAddIn.Tests

5
src/AddIns/Misc/NAntAddIn/Test/ReadOnlyPropertyNAntOutputTestFixture.cs

@ -5,10 +5,9 @@ @@ -5,10 +5,9 @@
// <version>$Revision$</version>
// </file>
using NUnit.Framework;
using ICSharpCode.NAntAddIn;
using ICSharpCode.Core;
using System;
using ICSharpCode.SharpDevelop;
using NUnit.Framework;
namespace ICSharpCode.NAntAddIn.Tests
{

5
src/AddIns/Misc/NAntAddIn/Test/TargetDoesNotExistNAntOutputTestFixture.cs

@ -5,10 +5,9 @@ @@ -5,10 +5,9 @@
// <version>$Revision$</version>
// </file>
using NUnit.Framework;
using ICSharpCode.NAntAddIn;
using ICSharpCode.Core;
using System;
using ICSharpCode.SharpDevelop;
using NUnit.Framework;
namespace ICSharpCode.NAntAddIn.Tests
{

1
src/AddIns/Misc/NAntAddIn/Test/VBErrorNAntOutputTestFixture.cs

@ -8,6 +8,7 @@ @@ -8,6 +8,7 @@
using NUnit.Framework;
using ICSharpCode.NAntAddIn;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
using System;
namespace ICSharpCode.NAntAddIn.Tests

1
src/Main/Base/Test/Services_Navigation/INavigationPointTextFixture.cs

@ -9,6 +9,7 @@ using System; @@ -9,6 +9,7 @@ using System;
using NUnit.Framework;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
namespace NavigationServiceTests
{

1
src/Main/Base/Test/Services_Navigation/NavigationServiceTestFixture.cs

@ -10,6 +10,7 @@ using System.Collections.Generic; @@ -10,6 +10,7 @@ using System.Collections.Generic;
using NUnit.Framework;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
namespace NavigationServiceTests
{

1
src/Main/Base/Test/Services_Navigation/TestNavigationPoint.cs

@ -8,6 +8,7 @@ @@ -8,6 +8,7 @@
using System;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
namespace NavigationServiceTests
{

Loading…
Cancel
Save