time-1.8: test/unix/Test/TestUtil.hs
{-# OPTIONS -fno-warn-overlapping-patterns #-}
module Test.TestUtil where
import Test.QuickCheck.Property
import Test.Tasty
import Test.Tasty.HUnit
import Test.Tasty.QuickCheck hiding (reason)
assertFailure' :: String -> IO a
assertFailure' s = do
assertFailure s
return undefined
assertJust :: Maybe a -> IO a
assertJust (Just a) = return a
assertJust Nothing = assertFailure' "Nothing"
class NameTest a where
nameTest :: String -> a -> TestTree
instance NameTest [TestTree] where
nameTest = testGroup
instance NameTest Assertion where
nameTest = testCase
instance NameTest Property where
nameTest = testProperty
instance NameTest Result where
nameTest name = nameTest name . property
instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
nameTest name = nameTest name . property
instance (Testable a) => NameTest (Gen a) where
nameTest name = nameTest name . property
tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
tgroup aa f = fmap (\a -> nameTest (show a) $ f a) aa
assertEqualQC :: (Show a,Eq a) => String -> a -> a -> Result
assertEqualQC _name expected found | expected == found = succeeded
assertEqualQC "" expected found = failed{reason="expected "++show expected++", found "++show found}
assertEqualQC name expected found = failed{reason=name++": expected "++show expected++", found "++show found}