Skip to content

Commit

Permalink
removed unneeded test
Browse files Browse the repository at this point in the history
  • Loading branch information
filipw committed Aug 19, 2020
1 parent e26785b commit 892cc7d
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions tests/OmniSharp.Roslyn.CSharp.Tests/CompletionFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -608,33 +608,6 @@ public class MyClass1 {
});
}

[Fact]
public async Task InternalsVisibleTo()
{
const string source =
@" /// <summary>
/// A comment. <see cref=""My$$"" /> for more details
/// </summary>
public class MyClass1 {
}
";

var completions = await FindCompletionsAsync("dummy.cs", source);
Assert.Contains(completions.Items, c => c.Label == "MyClass1");
Assert.All(completions.Items, c =>
{
switch (c.Label)
{
case "MyClass1":
Assert.True(c.Preselect);
break;
default:
Assert.False(c.Preselect);
break;
}
});
}

[Theory]
[InlineData("dummy.cs")]
[InlineData("dummy.csx")]
Expand Down

0 comments on commit 892cc7d

Please sign in to comment.