diff options
Diffstat (limited to 'source/Test/Unit.hs')
| -rw-r--r-- | source/Test/Unit.hs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/Test/Unit.hs b/source/Test/Unit.hs new file mode 100644 index 0000000..e98c33c --- /dev/null +++ b/source/Test/Unit.hs @@ -0,0 +1,15 @@ +module Test.Unit where + + +import Test.Tasty +import Test.Tasty.HUnit +import Test.Unit.Symdiff qualified as Symdiff + + +unitTests :: TestTree +unitTests = testGroup "unit tests" [testCase "filter" filtersWell] + + +filtersWell :: Assertion +filtersWell = do + assertBool "Filter works on symdiff problem" Symdiff.filtersWell |
