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.
22 lines
372 B
22 lines
372 B
{-# LANGUAGE QuasiQuotes #-} |
|
|
|
module Main |
|
( |
|
main |
|
) where |
|
|
|
import qualified Test.Packets.Icmp |
|
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 |
|
{-, Test.Packets.Icmp.tests -}] |
|
|
|
|