module Main (
  main,
  tests,
)
where

import Test.Tasty

import qualified Test.Data.Measure (tests)

main :: IO ()
IO ()
main = TestTree -> IO ()
defaultMain TestTree
tests

tests :: TestTree
tests :: TestTree
tests =
  TestName -> [TestTree] -> TestTree
testGroup
    TestName
"measures package"
    [ TestTree
Test.Data.Measure.tests
    ]