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