Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
- Both ScalaTest and spec2 are good unit testing frameworks. ScalaTest is more flexible is recommended.
ScalaTest
only assert is supported.
assert(expr1 === expr2, optional_msg)
The JUnit methods assertTrue, assertEquals and assertArrayEquals …