packages feed

io-sim-1.0.0.0: test/Main.hs

module Main (main) where

import           Test.Tasty

import qualified Test.Control.Monad.Class.MonadMVar (tests)
import qualified Test.Control.Monad.IOSim (tests)
import qualified Test.Control.Monad.IOSimPOR (tests)

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests =
  testGroup "IO Sim"
  [ Test.Control.Monad.Class.MonadMVar.tests
  , Test.Control.Monad.IOSim.tests
  , Test.Control.Monad.IOSimPOR.tests
  ]