Assert.True消息未在NUnit GUI中显示?

soo*_*ise 2 c# nunit

Assert.True(1==1, "blah");
Run Code Online (Sandbox Code Playgroud)

当此代码运行时,"blah"不会出现在NUnit GUI中.在NUnit的"文本输出"选项卡中看到"blah"需要采取哪些额外步骤?

Jar*_*Par 5

由于断言有效,因此不会显示该消息.该Assert.True方法检查表达式是否为true并仅显示该消息false.因此,在这种情况下1==1,true它不会显示出来.