module Main (main) where import qualified TestWeakSet as WSET import qualified TestWeakMap as WMAP import qualified TestPureSet as PSET main :: IO () main = do putStrLn "Beginning of the test." WSET.main WMAP.main PSET.main putStrLn "End of the tests."