18 lines
354 B
Standard ML
18 lines
354 B
Standard ML
structure Test =
|
|
struct
|
|
open Railroad
|
|
open Railroad.Test
|
|
|
|
fun main () =
|
|
let
|
|
val tests =
|
|
List.concat [NormalMove.tests, NormalDelete.tests, Regression.tests]
|
|
val tests = concat tests
|
|
in
|
|
runWithConfig [Configuration.PrintPassed false] tests
|
|
handle e => ExceptionLogger.log e
|
|
end
|
|
end
|
|
|
|
val () = Test.main ()
|