{-# LANGUAGE ScopedTypeVariables #-}
module Common where
Copyright By PowCoder代写 加微信 powcoder
import Data.IORef
import Test.Tasty
import Test.Tasty.HUnit
import System.Exit
import System.Process
import System.IO
import Control.Exception
import Text.Printf
import System.FilePath
type Score = IORef (Int, Int)
runTests :: [Score -> TestTree] -> IO ()
runTests groups = do
sc <- initScore
defaultMain (tests sc groups) `catch` (\(e :: ExitCode) -> do
(n, tot) <- readIORef sc
putStrLn ("OVERALL SCORE = " ++ show n ++ " / "++ show tot)
throwIO e)
tests :: Score -> [Score -> TestTree] -> TestTree
tests x gs = testGroup “Tests” [ g x | g <- gs ]
--------------------------------------------------------------------------------
-- | Construct a single test case
--------------------------------------------------------------------------------
mkTest' :: (Show b, Eq b) => Score -> (a -> IO b) -> a -> b -> String -> TestTree
——————————————————————————–
mkTest’ sc f x r name = scoreTest’ sc (f, x, r, 1, name)
——————————————————————————–
scoreTest’ :: (Show b, Eq b) => Score -> (a -> IO b, a, b, Int, String) -> TestTree
——————————————————————————–
scoreTest’ sc (f, x, expR, points, name) =
testCase name $ do
updateTotal sc points
actR <- f x
if actR == expR
then updateCurrent sc points
else assertFailure "Wrong Result"
updateTotal :: Score -> Int -> IO ()
updateTotal sc n = modifyIORef sc (\(x, y) -> (x, y + n))
updateCurrent :: Score -> Int -> IO ()
updateCurrent sc n = modifyIORef sc (\(x, y) -> (x + n, y))
initScore :: IO Score
initScore = newIORef (0, 0)
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com