Files
2024B1-AP/a5/a5-handout/runtests.hs
2024-10-10 11:14:29 +02:00

7 lines
194 B
Haskell

import qualified APL.Tests
import Test.Tasty (defaultMain)
import Test.Tasty.QuickCheck (testProperties)
main :: IO ()
main = defaultMain (testProperties "APL properties" APL.Tests.properties)