dejafu/dejafu-tests/Examples.hs

22 lines
598 B
Haskell
Raw Normal View History

2016-03-31 16:45:55 +03:00
module Examples where
import Test.Framework (Test, testGroup)
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
2016-03-31 16:45:55 +03:00
import Utils (tg)
2016-03-31 16:45:55 +03:00
-- | Run all the example tests.
testExamples :: [Test]
testExamples =
[ tg "auto-update" A.tests
, testGroup "Class Laws" C.tests
, testGroup "Dining Philosophers" P.tests
, tg "Message Logger" L.tests
, testGroup "Search Party" S.tests
2016-03-31 16:45:55 +03:00
]