What is assertTrue and assertFalse in JUnit?

What is assertTrue and assertFalse in JUnit?

AssertTrue asserts that the expression is true. If it is not, the message will be displayed and the assertion will fail. You assert that an expression evaluates to false with assertFalse. If it is not, the message appears and the assertion fails.