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.

18 lines
273 B

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