11 lines
253 B
Haskell
11 lines
253 B
Haskell
|
module Main where
|
||
|
|
||
|
import Test.HUnit
|
||
|
import Parser.Lexer
|
||
|
import TestLexer
|
||
|
|
||
|
otherTest = TestCase $ assertEqual "math" (4+3) 7
|
||
|
|
||
|
tests = TestList [TestLabel "TestLexer" TestLexer.tests, TestLabel "mathTest" otherTest]
|
||
|
|
||
|
main = do runTestTTAndExit Main.tests
|