mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
9 lines
190 B
Haskell
9 lines
190 B
Haskell
import LowLevelTests
|
|
import Test.Tasty
|
|
import UnsafeTests
|
|
|
|
main :: IO ()
|
|
main = defaultMain $ testGroup "GRPC Unit Tests"
|
|
[ unsafeTests
|
|
, lowLevelTests
|
|
]
|