Skip to content

Commit

Permalink
Unskip error list tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dibarbet committed Aug 26, 2022
1 parent c43a753 commit 0b838cc
Showing 1 changed file with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ protected CSharpErrorListCommon(string templateName)

protected override string LanguageName => LanguageNames.CSharp;

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/61367")]
public virtual async Task ErrorList()
[IdeTheory]
[CombinatorialData]
public virtual async Task ErrorList([CombinatorialRange(0, 10)] int iteration)
{
_ = iteration;
await TestServices.Editor.SetTextAsync(@"
class C
{
Expand Down Expand Up @@ -61,9 +63,11 @@ static void Main(string[] args)
string.Join(Environment.NewLine, actualContents));
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/61367")]
public virtual async Task ErrorLevelWarning()
[IdeTheory]
[CombinatorialData]
public virtual async Task ErrorLevelWarning([CombinatorialRange(0, 10)] int iteration)
{
_ = iteration;
await TestServices.Editor.SetTextAsync(@"
class C
{
Expand All @@ -84,9 +88,11 @@ static void Main(string[] args)
string.Join(Environment.NewLine, actualContents));
}

[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/61367")]
public virtual async Task ErrorsDuringMethodBodyEditing()
[IdeTheory]
[CombinatorialData]
public virtual async Task ErrorsDuringMethodBodyEditing([CombinatorialRange(0, 10)] int iteration)
{
_ = iteration;
await TestServices.Editor.SetTextAsync(@"
class Program2
{
Expand Down

0 comments on commit 0b838cc

Please sign in to comment.