我正在使用xUnit和FsCheck在F#中使用F#编写Diamond Kata,并且在尝试检查是否在用户输入无效时抛出异常时遇到了一些麻烦(任何字符这不是没有任何变音符号的字母)。以下是代码现在的样子:
正在测试的方法:
public static string Make(char letter)
{
if (!Regex.IsMatch(letter.ToString(), @"[a-zA-Z]"))
{
throw new InvalidOperationException();
}
// code that makes the diamond
}
测试:
[<Property>]
let ``Diamond.Make must throw an InvalidOperationException if a character that isn't
an alphabet letter without any diacritics is given`` (letter : char) =
(not (('A' <= letter && letter <= 'Z') || ('a' <= letter && letter <= 'z'))) ==> lazy
(Assert.Throws<InvalidOperationException>(fun () -> Diamond.Make letter |> ignore))
我的方法的问题是测试表明没有抛出Exception,但是当我使用测试套件显示的输入运行应用程序时,会引发异常。
以下是测试套件给出的消息(我故意省略了测试名称和堆栈跟踪):
Test Outcome: Failed
Test Duration: 0:00:00,066
Result Message:
FsCheck.Xunit.PropertyFailedException :
Falsifiable, after 1 test (0 shrinks) (StdGen (1154779780,296216747)):
Original:
')'
---- Assert.Throws() Failure
Expected: typeof(System.InvalidOperationException)
Actual: (No exception was thrown)
虽然测试套件说值')'
没有抛出任何异常,但我用它进行了手动测试,确实抛出了预期的异常。
如何确保测试捕获到异常?
答案 0 :(得分:4)
我认为问题是Assert.Throws如果发生则返回给定类型的异常。只是忽略Assert的返回值.Throws应该会帮助你。
let test (letter : char) =
(not (('A' <= letter && letter <= 'Z') || ('a' <= letter && letter <= 'z'))) ==>
lazy
Assert.Throws<InvalidOperationException>(fun () -> Diamond.Make letter |> ignore)
|> ignore