10 lines
188 B
Haskell
10 lines
188 B
Haskell
|
{-# LANGUAGE OverloadedStrings #-}
|
||
|
import Test.HUnit
|
||
|
import Object (testNumber, testString)
|
||
|
|
||
|
main :: IO ()
|
||
|
main = runTestTT (TestList [
|
||
|
testNumber
|
||
|
, testString
|
||
|
]) *> return ()
|