-
Notifications
You must be signed in to change notification settings - Fork 0
Boolean assertions
Wesley Baartman edited this page May 30, 2019
·
7 revisions
Home > Assertions > Object assertions > Boolean assertions
This page will contain documentation for all assertions made about booleans. These assertions extend the assertions found at the Object assertions page.
Using these assertions requires the following package to be installed in your project: AssertNet
IsTrue()
Checks if a boolean value is true.
bool isOn = true;
AssertThat(isOn).IsTrue();