import Test.Tasty ( TestTree, defaultMain, testGroup ) import DNS ( dns_properties, dns_tests ) import Report ( report_tests ) tests :: TestTree tests = testGroup "All tests" [ dns_properties, dns_tests, report_tests ] main :: IO () main = defaultMain tests