prettyprinter-configurable-1.0.0.0: test/Main.hs
module Main where
import Default
import Expr
import NonDefault
import Universal
import Test.Tasty
main :: IO ()
main = defaultMain $ testGroup "all"
[ test_default
, test_nonDefault
, test_universal
, test_expr
]