MiniJavaCompiler/Test/TestSuite.hs

12 lines
231 B
Haskell
Raw Normal View History

2024-05-01 21:07:04 +02:00
module Main where
import Test.HUnit
import TestLexer
2024-05-03 15:47:41 +02:00
import TestParser
2024-05-01 21:07:04 +02:00
2024-05-02 22:33:35 +02:00
tests = TestList [
TestLabel "TestLexer" TestLexer.tests,
TestLabel "TestParser" TestParser.tests
]
2024-05-01 21:07:04 +02:00
main = do runTestTTAndExit Main.tests