assertTrue() method
This lesson demonstrates how to use assertTrue method in JUnit 5 to assert test conditions.
We'll cover the following
assertTrue() method
Assertions API provide static assertTrue()
method. This method helps us in validating that the actual value supplied to it is true
.
- If the actual value is
true
then test case will pass. - If the actual value is
not true
then test case will fail.
There are basically six useful overloaded methods for assertTrue:-
Get hands-on with 1400+ tech skills courses.