mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
1907fa66c4
* begin module with LowLevel tests of Op stuff, cancel functions, refactor Ops a little. * refactor op tests, add server-side cancellation test * add cancel function for unregistered calls, move some unregistered stuff * remove unnecessary threadDelay * update test description * fix init metadata api for registered server calls * pass call into handler for cancelling, add cancel test
11 lines
244 B
Haskell
11 lines
244 B
Haskell
import LowLevelTests
|
|
import LowLevelTests.Op
|
|
import Test.Tasty
|
|
import UnsafeTests
|
|
|
|
main :: IO ()
|
|
main = defaultMain $ testGroup "GRPC Unit Tests"
|
|
[ unsafeTests
|
|
, lowLevelOpTests
|
|
, lowLevelTests
|
|
]
|