dfinity-radix-tree-0.5.0: test/Tests.hs
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
]