PPU/tests/unittests.hs

11 lines
160 B
Haskell
Raw Normal View History

2023-05-20 15:22:43 +00:00
import Prelude
import Test.Tasty
import qualified Tests.Example.Project
main :: IO ()
main = defaultMain $ testGroup "."
[ Tests.Example.Project.tests
]