packages feed

typed-protocols-1.0.0.0: test/Main.hs

module Main (main) where

import Test.Tasty

import Network.TypedProtocol.PingPong.Tests qualified as PingPong
import Network.TypedProtocol.ReqResp.Tests qualified as ReqResp

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests =
  testGroup "typed-protocols"
  [ PingPong.tests
  , ReqResp.tests
  ]