### Description `BooleanAssertions` is missing an `NotBe(boolean unexpected)` assertion. ### Complete minimal example reproducing the issue One should be able to write ```csharp // Act bool foo = Foo(); bool bar = Bar(); // Assert foo.Should().NotBe(bar); ```