1
0
Fork 0
mirror of https://github.com/unclechu/gRPC-haskell.git synced 2025-03-22 21:55:14 +01:00
gRPC-haskell/core/tests/Properties.hs

13 lines
265 B
Haskell
Raw Normal View History

import LowLevelTests
import LowLevelTests.Op
import Test.Tasty
import UnsafeTests
main :: IO ()
main = defaultMain $ testGroup "GRPC Unit Tests"
[ unsafeTests
, unsafeProperties
, lowLevelOpTests
, lowLevelTests
]