I used to use these in NUnit and they are really useful. Any idea how to do something like that?
EDIT, CODE SAMPLE:
bool condition = false;//woul
Another way to get Pass assert is to create new assert.
public static class ExtraAssert
{
public static void Pass(this Microsoft.VisualStudio.TestTools.UnitTesting.Assert assert)
{
return;
}
}
There is a catch however, because you could only access that method using 'That' keyword.
Assert.That.Pass();
ref: https://www.meziantou.net/mstest-v2-create-new-asserts.htm