NullEmpty 检查
IsNotNull
这是一种非常简单且流行的方法,用于检查项是否为空。它只是检查传入的对象以查看它是否为 null。
Assert.IsNotNull(database, type, "Name: {0}", item);
IsNotNullOrEmpty
这与上面的 IsNotNull 相同,但适用于字符串值而不是对象。
Assert.IsNotNullOrEmpty(propertyName, "user");
一片空白
这只是 IsNotNull()
方法的反转。此方法断言该对象为 null。
Assert.IsNull(this.StandardValues, "A Standard Values item has already been created for this template ");