Skip to content

Commit

Permalink
#77 is no longer correct
Browse files Browse the repository at this point in the history
  • Loading branch information
Meir017 committed Aug 14, 2023
1 parent eb62400 commit 7c80950
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions src/FluentAssertions.Analyzers.Tests/Tips/SanityTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,31 +239,6 @@ public static void Main()
DiagnosticVerifier.VerifyCSharpDiagnosticUsingAllAnalyzers(source);
}

[TestMethod]
[Implemented(Reason = "https://github.com/fluentassertions/fluentassertions.analyzers/issues/77")]
public void DictionaryShouldHaveCount1_ShouldNotReport()
{
const string source = @"
using System.Linq;
using System.Collections.Generic;
using FluentAssertions;
using FluentAssertions.Extensions;
namespace TestNamespace
{
public class Program
{
public static void Main()
{
var dict = new Dictionary<string, object>();
dict.Should().HaveCount(1);
}
}
}";

DiagnosticVerifier.VerifyCSharpDiagnosticUsingAllAnalyzers(source);
}

[TestMethod]
[Implemented(Reason = "https://github.com/fluentassertions/fluentassertions.analyzers/issues/172")]
public void AssertAreEqualDoesNotCompile()
Expand Down

0 comments on commit 7c80950

Please sign in to comment.