Files
sml-projects/test/test.sml

17 lines
314 B
Standard ML
Raw Normal View History

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
end
end
2024-11-19 06:27:38 +00:00
val () = Test.main ()