我在编写一些测试时想知道在使用xUnit测试时是否可以使用@microsoft声明的string.isempty。 (见下文)

我是一名编程学生,我的老师建议尽可能使用@microsofts已经定义的方法和const。

我已经尝试过了,但是似乎没有用,所以以为我做错了什么。

[Theory]
[InlineData(string.Empty)]
[InlineData(null)]
[InlineData("        ")]
[InlineData(" ")]
[InlineData(" someRandomText")]
// ...
public void SetEmailaddress_WrongEmail_IllegalArgumentException(string data) // type of method that is being test, what kind of test, the expected outcome
   {
      //Assert
      Assert.Throws<ArgumentException>(() => _l.Emailaddress = data);
   }


提前致谢!

格蕾兹

最佳答案

它与测试无关,与属性无关。属性必须是编译时间常数。

您可以转到this问题,找出为什么string.empty不被视为常量与""

10-08 02:50