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.

15 lines
210 B

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