Browse Source

fix build

pull/505/merge
Siegfried Pammer 11 years ago
parent
commit
295dda6540
  1. 6
      src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/CodeCompletionTests.cs
  2. 7
      src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/CodeInsertionTests.cs

6
src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/CodeCompletionTests.cs

@ -39,6 +39,12 @@ namespace ICSharpCode.XamlBinding.Tests
[RequiresSTA] [RequiresSTA]
public class CodeCompletionTests : TextEditorBasedTests public class CodeCompletionTests : TextEditorBasedTests
{ {
[SetUp]
public void SetUp()
{
CodeCompletionOptions.DataUsageCacheEnabled = false;
}
#region CtrlSpace #region CtrlSpace
[Test] [Test]
public void CtrlSpaceTest01() public void CtrlSpaceTest01()

7
src/AddIns/BackendBindings/XamlBinding/XamlBinding.Tests/CodeInsertionTests.cs

@ -21,6 +21,7 @@ using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Linq; using System.Linq;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Editor.CodeCompletion; using ICSharpCode.SharpDevelop.Editor.CodeCompletion;
using NUnit.Framework; using NUnit.Framework;
@ -30,6 +31,12 @@ namespace ICSharpCode.XamlBinding.Tests
[RequiresSTA] [RequiresSTA]
public class CodeInsertionTests : TextEditorBasedTests public class CodeInsertionTests : TextEditorBasedTests
{ {
[SetUp]
public void SetUp()
{
CodeCompletionOptions.DataUsageCacheEnabled = false;
}
#region TextInsertionTests #region TextInsertionTests
[Test] [Test]
public void CtrlSpaceClosingAttributeValueWithEqualsInsertionTest() public void CtrlSpaceClosingAttributeValueWithEqualsInsertionTest()

Loading…
Cancel
Save