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