tiesebarrell / process-assertions

Test case assertions for integration tests that run processes with Activiti
Apache License 2.0
4 stars 5 forks source link

Reduce dependency on JUnit #5

Closed tiesebarrell closed 6 years ago

tiesebarrell commented 10 years ago

The current implementation relies on JUnit as testing framework. There's no reason other frameworks could not be supported. If the JUnit API were wrapped, using a set of internal APIs for the basic assertions (assertNull, assertTrue, assertFalse, assertEquals, etc.), then a runtime check could be done after catching an internal assertionerror and direct the fail() to the appropriate framework.

tiesebarrell commented 10 years ago

The main code is no longer dependent on JUnit, but there are some additional actions / issues: