How To Test Programs Thats Use Java “assert” Statements?
Since JUnit 3.8, the JUnit runner if fully compatible with the assertion feature. If a Java “assert” statement failed in a JUnit test, the JUnit runner will report that this test fails. When you design your tests, you should ignore the fact the target class is using “assert” statements. Ingore those “assert” statement and write tests to cover all cases where the target class could break. Here is a good example of JUnit tests testing the sample program, DayOfWeek.java, presented in the previous question. test3() is designed to test the same area where the Java “assert” statement is located.