Created
May 19, 2021 09:34
-
-
Save babaktaremi/df61f960eeb6d8629c8685e708da41e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Assert.That(28, Is.EqualTo(_actualFuel)); // Tests whether the specified values are equal. | |
Assert.That(28, Is.Not.EqualTo(_actualFuel)); // Tests whether the specified values are unequal. Same as AreEqual for numeric values. | |
Assert.That(_expectedRocket, Is.SameAs(_actualRocket)); // Tests whether the specified objects both refer to the same object | |
Assert.That(_expectedRocket, Is.Not.SameAs(_actualRocket)); // Tests whether the specified objects refer to different objects | |
Assert.That(_isThereEnoughFuel, Is.True); // Tests whether the specified condition is true | |
Assert.That(_isThereEnoughFuel, Is.False); // Tests whether the specified condition is false | |
Assert.That(_actualRocket, Is.Null); // Tests whether the specified object is null | |
Assert.That(_actualRocket, Is.Not.Null); // Tests whether the specified object is non-null | |
Assert.That(_actualRocket, Is.InstanceOf<Falcon9Rocket>()); // Tests whether the specified object is an instance of the expected type | |
Assert.That(_actualRocket, Is.Not.InstanceOf<Falcon9Rocket>()); // Tests whether the specified object is not an instance of type | |
Assert.That(_actualFuel, Is.GreaterThan(20)); // Tests whether the specified object greater than the specified value | |
Assert.That(28, Is.EqualTo(_actualFuel).Within(0.50)); | |
// Tests whether the specified values are nearly equal within the specified tolerance. | |
Assert.That(28, Is.EqualTo(_actualFuel).Within(2).Percent); | |
// Tests whether the specified values are nearly equal within the specified % tolerance. | |
Assert.That(_actualRocketParts, Has.Exactly(10).Items); | |
// Tests whether the specified collection has exactly the stated number of items in it. | |
Assert.That(_actualRocketParts, Is.Unique); | |
// Tests whether the items in the specified collections are unique. | |
Assert.That(_actualRocketParts, Does.Contain(_expectedRocketPart)); | |
// Tests whether a given items is present in the specified list of items. | |
Assert.That(_actualRocketParts, Has.Exactly(1).Matches<RocketPart>(part => part.Name == "Door" && part.Height == "200")); | |
// Tests whether the specified collection has exactly the stated item in it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment