资 源 简 介
IMPORTANT NOTES
SharpTestsEx is and will be the multi-purpose version of NUnitEx. You can use SharpTestsEx with NUnit, xUnit, MsTests , MbUnit and, in theory, with any other test framework.
NUnitEx
Set of constraints extensions to work on-top of NUnit.
Strongly typed Assertions few examples
```
true.Should().Be.True();
false.Should().Be.False();
const string somethig = "something";
somethig.Should().Contain("some");
somethig.Should().Not.Contain("also");
somethig.ToUpperInvariant().Should().Not.Contain("some");
somethig.Should()
.StartWith("so")
.And
.EndWith("ing")
.And
.Contain("meth");
so