@@ -227,7 +227,7 @@ public class CollectionTests
227227 [ AssertionCodeFix (
228228 oldAssertion : "actual.AsEnumerable().Count().Should().BeGreaterThan(6{0}).And.ToString();" ,
229229 newAssertion : "actual.AsEnumerable().Should().HaveCountGreaterThan(6{0}).And.ToString();" ) ]
230- [ Implemented , Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
230+ [ Implemented ]
231231 public void CollectionShouldHaveCountGreaterThan_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldHaveCountGreaterThanCodeFix , CollectionShouldHaveCountGreaterThanAnalyzer > ( oldAssertion , newAssertion ) ;
232232
233233 [ AssertionDataTestMethod ]
@@ -251,7 +251,7 @@ public class CollectionTests
251251 [ AssertionCodeFix (
252252 oldAssertion : "actual.AsEnumerable().Count().Should().BeGreaterOrEqualTo(6{0}).And.ToString();" ,
253253 newAssertion : "actual.AsEnumerable().Should().HaveCountGreaterOrEqualTo(6{0}).And.ToString();" ) ]
254- [ Implemented , Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
254+ [ Implemented ]
255255 public void CollectionShouldHaveCountGreaterOrEqualTo_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldHaveCountGreaterOrEqualToCodeFix , CollectionShouldHaveCountGreaterOrEqualToAnalyzer > ( oldAssertion , newAssertion ) ;
256256
257257 [ AssertionDataTestMethod ]
@@ -275,7 +275,7 @@ public class CollectionTests
275275 [ AssertionCodeFix (
276276 oldAssertion : "actual.AsEnumerable().Count().Should().BeLessThan(6{0}).And.ToString();" ,
277277 newAssertion : "actual.AsEnumerable().Should().HaveCountLessThan(6{0}).And.ToString();" ) ]
278- [ Implemented , Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
278+ [ Implemented ]
279279 public void CollectionShouldHaveCountLessThan_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldHaveCountLessThanCodeFix , CollectionShouldHaveCountLessThanAnalyzer > ( oldAssertion , newAssertion ) ;
280280
281281 [ AssertionDataTestMethod ]
@@ -299,7 +299,7 @@ public class CollectionTests
299299 [ AssertionCodeFix (
300300 oldAssertion : "actual.AsEnumerable().Count().Should().BeLessOrEqualTo(6{0}).And.ToString();" ,
301301 newAssertion : "actual.AsEnumerable().Should().HaveCountLessOrEqualTo(6{0}).And.ToString();" ) ]
302- [ Implemented , Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
302+ [ Implemented ]
303303 public void CollectionShouldHaveCountLessOrEqualTo_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldHaveCountLessOrEqualToCodeFix , CollectionShouldHaveCountLessOrEqualToAnalyzer > ( oldAssertion , newAssertion ) ;
304304
305305 [ AssertionDataTestMethod ]
@@ -323,7 +323,7 @@ public class CollectionTests
323323 [ AssertionCodeFix (
324324 oldAssertion : "actual.AsEnumerable().Count().Should().NotBe(6{0}).And.ToString();" ,
325325 newAssertion : "actual.AsEnumerable().Should().NotHaveCount(6{0}).And.ToString();" ) ]
326- [ Implemented , Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
326+ [ Implemented ]
327327 public void CollectionShouldNotHaveCount_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldNotHaveCountCodeFix , CollectionShouldNotHaveCountAnalyzer > ( oldAssertion , newAssertion ) ;
328328
329329 [ AssertionDataTestMethod ]
@@ -355,7 +355,7 @@ public class CollectionTests
355355 [ AssertionCodeFix (
356356 oldAssertion : "actual.AsEnumerable().Count().Should().NotBe(unexpected.Count(){0}).And.ToString();" ,
357357 newAssertion : "actual.AsEnumerable().Should().NotHaveSameCount(unexpected{0}).And.ToString();" ) ]
358- [ Implemented , Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
358+ [ Implemented ]
359359 public void CollectionShouldNotHaveSameCount_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldNotHaveSameCountCodeFix , CollectionShouldNotHaveSameCountAnalyzer > ( oldAssertion , newAssertion ) ;
360360
361361 [ AssertionDataTestMethod ]
@@ -563,7 +563,8 @@ public class CollectionTests
563563 [ AssertionCodeFix (
564564 oldAssertion : "actual.AsEnumerable().Select(x => x.BooleanProperty).Should().NotContainNulls({0}).And.ToString();" ,
565565 newAssertion : "actual.AsEnumerable().Should().NotContainNulls(x => x.BooleanProperty{0}).And.ToString();" ) ]
566- [ Implemented , Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
566+ [ Implemented ]
567+ [ Ignore ( "What Should Happen?" ) ]
567568 public void CollectionShouldNotContainNulls_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldNotContainNullsCodeFix , CollectionShouldNotContainNullsAnalyzer > ( oldAssertion , newAssertion ) ;
568569
569570 [ AssertionDataTestMethod ]
@@ -596,7 +597,6 @@ public class CollectionTests
596597 [ AssertionCodeFix (
597598 oldAssertion : "actual.AsEnumerable().Select(x => x.BooleanProperty).Should().OnlyHaveUniqueItems({0}).And.ToString();" ,
598599 newAssertion : "actual.AsEnumerable().Should().OnlyHaveUniqueItems(x => x.BooleanProperty{0}).And.ToString();" ) ]
599- [ Ignore ( "Will be available in Fluent Assertions 5.0" ) ]
600600 public void CollectionShouldOnlyHaveUniqueItemsByComparer_TestCodeFix ( string oldAssertion , string newAssertion ) => VerifyCSharpFixCodeBlock < CollectionShouldOnlyHaveUniqueItemsByComparerCodeFix , CollectionShouldOnlyHaveUniqueItemsByComparerAnalyzer > ( oldAssertion , newAssertion ) ;
601601
602602 [ AssertionDataTestMethod ]
0 commit comments