packages feed

WeakSets-1.0.0.0: test/AllTests.hs

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."