diff options
author | sanine <sanine.not@pm.me> | 2023-11-29 20:48:46 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-11-29 20:48:46 -0600 |
commit | 587cbadb3e6388c29454ab41c120757f108918fa (patch) | |
tree | 1fae09c76fce21b3f1b4ff23653dc5aa2f9067ac /test/Main.hs | |
parent | 4facdd8a1a5f141b158acbe1959da3d10d4c8ce9 (diff) |
implement updateLattice
Diffstat (limited to 'test/Main.hs')
-rw-r--r-- | test/Main.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Main.hs b/test/Main.hs index 907bbdd..24666a6 100644 --- a/test/Main.hs +++ b/test/Main.hs @@ -4,9 +4,11 @@ import Test.Tasty import qualified MindTest import qualified GenomeTest +import qualified LatticeTest main :: IO () main = defaultMain $ testGroup "all tests" $ [ MindTest.suite , GenomeTest.suite + , LatticeTest.suite ] |