dejafu/dejafu-tests/Examples.hs
2017-09-19 23:17:02 +01:00

20 lines
553 B
Haskell
Executable File

module Examples where
import qualified Examples.AutoUpdate as A
import qualified Examples.ClassLaws as C
import qualified Examples.Logger as L
import qualified Examples.Philosophers as P
import qualified Examples.SearchParty as S
import Common
-- | Run all the example tests.
testExamples :: [Test]
testExamples =
[ testGroup "auto-update" A.tests
, testGroup "Class Laws" C.tests
, testGroup "Dining Philosophers" P.tests
, testGroup "Message Logger" L.tests
, testGroup "Search Party" S.tests
]