hbs2/hbs2-core/test/Main.hs

21 lines
370 B
Haskell

module Main where
import TestFakeMessaging
import TestActors
-- import TestUniqProtoId
import Test.Tasty
import Test.Tasty.HUnit
main :: IO ()
main =
defaultMain $
testGroup "root"
[
testCase "testFakeMessaging1" testFakeMessaging1
, testCase "testActorsBasic" testActorsBasic
-- , testCase "testUniqProtoId" testUniqProtoId
]