StringAssert.That Property

Definition

Gets the singleton instance of the CollectionAssert functionality.

public:
 static property Microsoft::VisualStudio::TestTools::UnitTesting::StringAssert ^ That { Microsoft::VisualStudio::TestTools::UnitTesting::StringAssert ^ get(); };
public static Microsoft.VisualStudio.TestTools.UnitTesting.StringAssert That { get; }
member this.That : Microsoft.VisualStudio.TestTools.UnitTesting.StringAssert
Public Shared ReadOnly Property That As StringAssert

Remarks

Users can use this to plug-in custom assertions through C# extension methods. For instance, the signature of a custom assertion provider could be "public static void ContainsWords(this StringAssert customAssert, string value, ICollection substrings)" Users could then use a syntax similar to the default assertions which in this case is "StringAssert.That.ContainsWords(value, substrings);" More documentation is at "https://github.com/Microsoft/testfx-docs".

Applies to