Same bugs different day.
Quala is a quality assurance test suite for the Scala standard library.
cd quala
sbt
+update
+test
You can contribute tests using ScalaTests, ScalaCheck, Specs2, or JUnit. You can see examples of each in src/test/scala/example
.
If you want to write a test for scala.collection.immutable.List
you should:
- Put it in a file named
src/test/scala/collection/immutable/List.scala
. - Put your code in a class/object named
ListTest
. - Put
ListTest
in the packagequala.collection.immutable.List
.