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.
|
|
|
module Main |
|
( |
|
main |
|
) where |
|
|
|
import qualified Test.Packets.L3 |
|
import qualified Test.Packets.MacAddress |
|
import Test.Tasty |
|
|
|
main = defaultMain tests |
|
|
|
tests :: TestTree |
|
tests = testGroup "Tests" [ |
|
Test.Packets.MacAddress.tests |
|
, Test.Packets.L3.tests ] |
|
|
|
|