Skip to content
Snippets Groups Projects
How to run a test:
-----------------


SCALACHECK
----------

All tests in the "scalacheck" folder can be run with the following command (from the root of the project):

scala -cp bin:bin/examples:bin/tests:lib/ScalaCheck-1.5.jar TEST_FILE

Where TEST_FILE is for example: scalacheck.examples.BSTSpec


SCALATEST AND SCALASPECS
------------------------

All tests in the "scalatest" folder can be run with the following command (from the root of the project):

scala -cp bin:bin/examples:bin/tests:lib/scalatest-0.9.5.jar:lib/specs-1.5.0.jar org.scalatest.tools.Runner -o -s TEST_FILE

Where TEST_FILE is for example: scalatest.examples.MultisetSpec


SCRIPT TO RUN TESTS
-----------------------

[[TODO]] Coming soon =)