blob: d3b97abda9f830882353b9ca014eee721117a94a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{-# LANGUAGE ImportQualifiedPost #-}
module Main where
import Test.Tasty
import Tests.C qualified
main :: IO ()
main = defaultMain $
testGroup "Tests"
[Tests.C.tests]
|