私は奇妙なHUnit
の動作を経験しました。テストで条件が存在する場合、テストケースをコンパイルすることはできません。同じテストケースにおける条件Just 2 == Just 2
が正常に動作することをテストで `Nothing == Nothing`条件が存在する場合、HUnitはテストケースをコンパイルできません
[2 of 2] Compiling TestTest (Test/TestTest.hs, interpreted)
Test/TestTest.hs:9:49:
No instance for (Eq a0) arising from a use of ‘==’
The type variable ‘a0’ is ambiguous
Note: there are several potential instances:
instance Eq Counts -- Defined in ‘Test.HUnit.Base’
instance Eq Node -- Defined in ‘Test.HUnit.Base’
instance Eq State -- Defined in ‘Test.HUnit.Base’
...plus 53 others
In the second argument of ‘(~=?)’, namely ‘Nothing == Nothing’
In the second argument of ‘(~:)’, namely
‘True ~=? Nothing == Nothing’
In the second argument of ‘(~:)’, namely
‘"x == x" ~: True ~=? Nothing == Nothing’
Failed, modules loaded: Test.AssertError.
注:エラー以下ghci
リターンでこの内容のファイルをロードする
module TestTest where
import Control.Exception
import Control.Monad
import Test.HUnit
import Test.AssertError
testTests = test [
"test A01" ~: "x == x" ~: True ~=? Nothing == Nothing,
"test _" ~: "empty test" ~: True ~=? True
]
runTests :: IO Counts
runTests = do
runTestTT testTests
試み:ここでは、この動作を再現私のコードです。 ghci
にNothing == Nothing
と入力すると、期待どおりTrue
が返されます。
HUnit
はこのように動作しますか?これはバグか期待される動作ですか?
「おそらく」のタイプを指定する必要があります。 –