instrument-0.6.0.0: test/src/Main.hs
module Main (main) where
-------------------------------------------------------------------------------
import Test.Tasty
-------------------------------------------------------------------------------
import qualified Instrument.Tests.Client
import qualified Instrument.Tests.Types
import qualified Instrument.Tests.Utils
import qualified Instrument.Tests.Worker
-------------------------------------------------------------------------------
main :: IO ()
main = defaultMain $ testGroup "tests"
[ Instrument.Tests.Utils.tests
, Instrument.Tests.Client.tests
, Instrument.Tests.Types.tests
, Instrument.Tests.Worker.tests
]