summaryrefslogtreecommitdiff
path: root/test.hs
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2014-04-10 05:25:03 +1000
committerJed Barber <jjbarber@y7mail.com>2014-04-10 05:25:03 +1000
commit281425310c5db21f87981eeb9601a71d1974d98d (patch)
treebef4643d906c93622c311fef2cf758fe94f1f651 /test.hs
parente8695600977769008f285f9958eb043cca1b9b29 (diff)
Rearranging files
Diffstat (limited to 'test.hs')
-rw-r--r--test.hs29
1 files changed, 0 insertions, 29 deletions
diff --git a/test.hs b/test.hs
deleted file mode 100644
index 5fc3533..0000000
--- a/test.hs
+++ /dev/null
@@ -1,29 +0,0 @@
-
-import Test.HUnit
-import qualified Fractran.Test
-import qualified Thue.Test
-import qualified Unlambda.Test
-
-
-
-
-main = do
- putStrLn "Fractran Parser"
- runTestTT Fractran.Test.parserTests
-
- putStrLn "\nFractran Interpreter"
- runTestTT Fractran.Test.interpreterTests
-
- putStrLn "\nThue Parser"
- runTestTT Thue.Test.parserTests
-
- putStrLn "\nextractInfix"
- runTestTT Thue.Test.extractInfixTests
-
- putStrLn "\nUnlambda Parser"
- runTestTT Unlambda.Test.parserTests
-
- putStrLn "\nUnlambda Interpreter"
- tests <- Unlambda.Test.interpreterTests
- runTestTT tests
-