mirror of https://github.com/voidlizard/hbs2
21 lines
373 B
Haskell
21 lines
373 B
Haskell
module Main where
|
|
|
|
import TestFakeMessaging
|
|
import TestActors
|
|
import TestBlockInfoActor
|
|
|
|
import Test.Tasty
|
|
import Test.Tasty.HUnit
|
|
|
|
main :: IO ()
|
|
main =
|
|
defaultMain $
|
|
testGroup "root"
|
|
[
|
|
testCase "testFakeMessaging1" testFakeMessaging1
|
|
, testCase "testActorsBasic" testActorsBasic
|
|
, testCase "testBlockInfoActor" testBlockInfoActor
|
|
]
|
|
|
|
|