ScalaTest is a decent library for testing scala code. It integrates with ScalaCheck for "property based testing". In this type of testing, you specify properties of a class or method, and the library generates test cases. I haven't done much property based testing, and it sounds interesting, so I ...