How do you write assertTrue in JUnit?

How do you write assertTrue in JUnit?

In the case of JUnit 4 or JUnit 3, use the assertTrue method to assert. Assertions. assertTrue() determines whether the supplied boolean condition is true. If the condition is untrue, AssertError will be thrown.