我想知道是否存在编写通用单元测试代码的已知模式,其目的是检查(作为黑盒)类型类的各种实例(实现)。例如:
import Test.HUnit
class M a where
foo :: a -> String
cons :: Int -> a -- some constructor
data A = A Int
data B = B Int
instance M A where
foo _ = "foo"
cons = A
instance M B where
foo _ = "bar" -- implementation error
cons = B
我想编写一个tests
返回 a的函数,该函数Test
以某种方式指定tests
代码适用的特定实例。我正在考虑tests
使用默认实现添加类的定义(暂时忽略测试代码和实际代码之间的耦合问题),但我不能简单地拥有tests :: Test
,即使我尝试tests:: a -> Test
(因此必须人为地通过一个具体的给定类型的元素来调用函数),我不知道如何引用cons
和foo
在代码内部(类型注释(cons 0) :: a
不会这样做)。
假设我有class (Eq a) => M a where ...
,使用 typesA
和B
deriving Eq
,我可以用类似的东西欺骗编译器(添加到 的定义中M
):
tests :: a -> Test
tests x = let
y = (cons 0)
z = (x == y) -- compiler now knows y :: a
in
TestCase (assertEqual "foo" (foo y) "foo")
main = do
runTestTT $ TestList
[ tests (A 0)
, tests (B 0)
]
但这对我来说非常难看。任何建议都热烈欢迎