AreEqual(expected, actual) / AreNotEqual(expected, actual) |
Verifies that two values are equal / not equal. |
IsTrue(condition) / IsFalse(condition) |
Verifies that the condition is true / false. |
IsNotNull(object) / IsNull(object) |
Verifies that the object is not null / null. |
IsInstanceOfType(object, type) |
Verifies that the object is an instance of the specified type. |