hw-kafka-streamly-0.2.0.0: test/Main.hs
module Main (main) where
import Kafka.Streamly.CombinatorsTest qualified as CombinatorsTest
import Kafka.Streamly.StreamTest qualified as StreamTest
import Test.Tasty (TestTree, defaultMain, testGroup)
main :: IO ()
main = defaultMain tests
tests :: TestTree
tests =
testGroup
"hw-kafka-streamly"
[ StreamTest.tests
, CombinatorsTest.tests
]