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:
Diffstat (limited to 'main/tests/MonoDevelop.CSharpBinding.Tests/Features/CodeCompletion/NR6/MiscTests.cs')
-rw-r--r--main/tests/MonoDevelop.CSharpBinding.Tests/Features/CodeCompletion/NR6/MiscTests.cs36
1 files changed, 1 insertions, 35 deletions
diff --git a/main/tests/MonoDevelop.CSharpBinding.Tests/Features/CodeCompletion/NR6/MiscTests.cs b/main/tests/MonoDevelop.CSharpBinding.Tests/Features/CodeCompletion/NR6/MiscTests.cs
index 4cc0a70770..180095af9a 100644
--- a/main/tests/MonoDevelop.CSharpBinding.Tests/Features/CodeCompletion/NR6/MiscTests.cs
+++ b/main/tests/MonoDevelop.CSharpBinding.Tests/Features/CodeCompletion/NR6/MiscTests.cs
@@ -27,6 +27,7 @@ using System;
using NUnit.Framework;
using ICSharpCode.NRefactory6.CSharp.Completion;
using ICSharpCode.NRefactory6.CSharp.CodeCompletion.Roslyn;
+using System.Reflection.Metadata.Ecma335.Blobs;
namespace ICSharpCode.NRefactory6.CSharp.CodeCompletion.NR6
{
@@ -210,40 +211,5 @@ class Test
Assert.AreEqual (2, data.OverloadedData.Count);
}
-
- /// <summary>
- /// Bug 41388 - Code completion is incorrect for array types
- /// </summary>
- [Test]
- public void TestBug41388 ()
- {
- var provider = CreateProvider (
- @"
-using System;
-
-class Test
-{
- public event EventHandler FooBar;
-
- public Test[] test { get; private set; }
-
-
- public Test()
- {
- test = new $$
- FooBar += Test_FooBar;
- }
-
- void Test_FooBar(object sender, EventArgs e)
- {
-
- }
-}
-
-");
- Assert.IsNotNull (provider, "provider was not created.");
-
- Assert.IsNull (provider.Find ("System.Action<object, System.EventArgs>"));
- }
}
}