packages feed

waterfall-cad-examples-0.6.3.0: test/Main.hs

module Main
( main
) where

import DiagramGoldenTests (diagramGoldenTests)
import ExceptionTests (exceptionTests)
import Test.Tasty (defaultMain, testGroup)


main :: IO ()
main = defaultMain $ testGroup "tests"
    [ diagramGoldenTests
    , exceptionTests
    ]