在 MSTest 中,Assert.Fail 中的第二个参数有什么作用?
In MSTest, what does the second argument in Assert.Fail do?
在 MS 的文档中,他们提到了以下内容:
Fail(String, Object[])
public static void Fail (string message, params object[] parameters);
Parameters
message
String
The message to include in the exception. The message is shown in test results.
parameters
Object[]
An array of parameters to use when formatting message.
没有详细说明parameters
参数的作用。我放在那里的所有内容都没有显示在错误消息中,那它有什么作用?
我明白了。在 source code 中很明显它就像 string.Format
.
一样工作
在 MS 的文档中,他们提到了以下内容:
Fail(String, Object[])
public static void Fail (string message, params object[] parameters);
Parameters
message
String
The message to include in the exception. The message is shown in test results.
parameters
Object[]
An array of parameters to use when formatting message.
没有详细说明parameters
参数的作用。我放在那里的所有内容都没有显示在错误消息中,那它有什么作用?
我明白了。在 source code 中很明显它就像 string.Format
.