Click or drag to resize
Assert Class
Verifies conditions in unit tests using true/false propositions.
Inheritance Hierarchy
SystemObject
  TestArchitect.Harness.CoreAssert

Namespace:  TestArchitect.Harness.Core
Assembly:  TestArchitect.Harness.Bundle.Core (in TestArchitect.Harness.Bundle.Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static class Assert

The Assert type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAreEqual
Verifies that two specified strings are equal. The assertion fails if they are not equal.
Public methodStatic memberAreNotEqual
Verifies that two specified strings are not equal. The assertion fails if they are equal.
Public methodStatic memberIsFalse
Verifies that the specified condition is true. The assertion fails if the condition is false.
Public methodStatic memberIsTrue
Verifies that the specified condition is false. The assertion fails if the condition is true.
Top
See Also