Theta testing framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
372 B

{-# LANGUAGE QuasiQuotes #-}
2 years ago
module Main
(
main
) where
import qualified Test.Packets.Icmp
import qualified Test.Packets.L3
2 years ago
import qualified Test.Packets.MacAddress
import Test.Tasty
2 years ago
main = defaultMain tests
tests :: TestTree
tests = testGroup "Tests"
[
Test.Packets.MacAddress.tests
, Test.Packets.L3.tests
{-, Test.Packets.Icmp.tests -}]
2 years ago