JetBrains / ExternalAnnotations

JetBrains ReSharper External Annotations
https://www.jetbrains.com/help/resharper/Code_Analysis__External_Annotations.html
MIT License
81 stars 44 forks source link

Support FluentAssertions #164

Closed skarllot closed 10 months ago

skarllot commented 5 years ago

Could include annotations for FluentAssertions testing library.

Then a code like the below would not trigger a null warning:

   sut.Should().NotBeNull();
   sut.Description.Should().Be(expectedDescription);
// ↳ Null warning here