import Data.List import qualified Data.Map as M import Debug.Trace import Lib import Parser import Test.Tasty import Test.Tasty.HUnit import Test.Tasty.QuickCheck as QC main = defaultMain tests tests :: TestTree tests = testGroup "Tests" [unitTests] unitTests = testGroup "Unit tests" [ testCase "" $ ev (cc "Ex.x+1=2") @?= True, ]