嗨,我在 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 个测试),都会抛出此错误;当然;)测试编译并通过,我无法理解该错误。
再见斯特凡诺