This commit is contained in:
crumbtoo
2023-12-04 18:43:06 -07:00
parent 799cc8e398
commit 43454fa2e0
4 changed files with 119 additions and 10 deletions

View File

@@ -1,5 +1,18 @@
module Main (main) where
----------------------------------------------------------------------------------
import Control.Monad
import System.Exit
import Test.QuickCheck
import Arith
----------------------------------------------------------------------------------
runTests :: IO Bool
runTests = runTestsArith
main :: IO ()
main = putStrLn "Test suite not yet implemented."
main = do
good <- runTests
if good
then exitSuccess
else exitFailure