Cabal和HUnit互动

时间:2015-11-17 13:26:06

标签: haskell cabal hunit

我正在努力让一个简单的单元测试工作,用HUnit编写。

我把测试放入的模块名为“MyTests”。

module MyTests where
import qualified Test.HUnit    as H
gamma = H.TestCase (H.assertEqual "foo" 1 1)
-- Run the tests from the REPL
runTestTT $ H.TestList [H.TestLabel "foo" gamma]

我可以从cabal repl中完美地运行这个模块:

λ> run
Cases: 1  Tried: 1  Errors: 0  Failures: 0
Counts {cases = 1, tried = 1, errors = 0, failures = 0}

我想将这些测试与Cabal集成,以便我可以运行cabal test

从谷歌的几个小时后,我发现我应该能够使用以下方法测试我的应用程序:

cabal configure --enable-tests && cabal build tests && cabal test

我在.cabal文件中插入了以下内容:

Test-Suite tests
    type:           exitcode-stdio-1.0
    main-is:        Main.hs
    hs-source-dirs: test src
    test-module:    YourTestModule
    build-depends:  base
                  , HUnit
                  , Cabal
                  , QuickCheck
                  , test-framework
                  , test-framework-hunit
                  , test-framework-quickcheck2

Main.hs文件夹下的test/文件中,我有以下内容:

module Main where

import Test.Framework (defaultMain, testGroup)
import Test.Framework.Providers.HUnit
import Test.Framework.Providers.QuickCheck2 (testProperty)

import Test.QuickCheck
import Test.HUnit

import Data.List

import qualified MyTests as AG


main = defaultMain tests

tests = [
        testGroup "Some group" [
                testCase "foo" AG.gamma        
            ]
    ]

这显然会返回错误:

test/Main.hs:19:32:
    Couldn't match type ‘Test’ with ‘IO ()’
    Expected type: Assertion
      Actual type: Test
    In the second argument of ‘testCase’, namely ‘AG.gamma’
    In the expression: testCase "foo" AG.gamma

我真的很喜欢我到目前为止所写的HUnit测试(这是一个MWE),我想知道我可以将这些测试与其他测试相结合吗?

1 个答案:

答案 0 :(得分:0)

问题是AG.gamma的类型为Test,因为TestCase :: Assertion -> Test

因此,HUnit有一种创建测试树的方法,而test-framework有另一种使用函数testCase :: TestName -> Assertion -> Test创建测试树的方法。

因此,您无法接受HUnit.Test并将其传递给testCase。但事实证明,可以HUnit.Test转换转换为test-framework测试(或者更确切地说是它们的列表)。

使用test-framework模块中的其他功能:

hUnitTestToTests :: HUnit.Test -> [TestFramework.Test]

(增加了签名以显示模块的来源)。

请点击此处了解更多详情:

https://hackage.haskell.org/package/test-framework-hunit-0.3.0.2/docs/Test-Framework-Providers-HUnit.html