import Test.Tasty

import Integrations as Integration (tests)
import Properties as Property (tests)
import Units as Unit (tests)

main :: IO ()
main = do
   units <- Unit.tests
   defaultMain $ testGroup "tests"
      [ Integration.tests
      , Property.tests
      , units
      ]