1

嗨,我在 VisualStudio 2010 中有一个使用 Gallio 3.2 b.435 的测试项目。每次启动任何测试时,都会弹出输出窗口。

这是错误信息

[error] An exception was thrown while exploring tests.
Location: C:\xxxxxxx(73)
Details: System.FormatException: Input string was not in a correct format.
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)

这是指定行的代码

71: [Test, ExpectedException(typeof(RulesException<Story>))]
72: public void CanNotSaveItemIfInvalid()
73: {
74:     var story= new Story{ Id = 100, Tilte= "test" };
75:      repository.Save(story, new MembershipUser());
76: }

无论正在测试什么测试(项目包含 700 个测试),都会抛出此错误;当然;)测试编译并通过,我无法理解该错误。

再见斯特凡诺

4

1 回答 1

2

此错误是一个已知问题。这是由于 Gallio 核心引擎使用的 Mono.Cecil (v0.6) 早期版本中的一个错误。最近已修复:Gallio 现在使用 Mono.Cecil v0.9。

请试用最新版本的 Gallio (v3.2.2)

于 2011-02-17T12:46:30.070 回答