MSTestExtensions 4.0.0

dotnet add package MSTestExtensions --version 4.0.0
NuGet\Install-Package MSTestExtensions -Version 4.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MSTestExtensions" Version="4.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MSTestExtensions --version 4.0.0
#r "nuget: MSTestExtensions, 4.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MSTestExtensions as a Cake Addin
#addin nuget:?package=MSTestExtensions&version=4.0.0

// Install MSTestExtensions as a Cake Tool
#tool nuget:?package=MSTestExtensions&version=4.0.0

An extendible implementation of the Assert class in MSTest.

Allows for extending the Assert methods with the default MSTest methods as a default.

Includes a:
* Throws() method for asserting exceptions.
* ThrowsAsync() method for asserting exceptions for async methods.

INSTRUCTIONS: In your test class, inherit from MsTestExtensions.BaseTest. Type Assert.Throws() or Assert.ThrowsAsync().. that's it! All of the standard Assert. methods from MsTest will still be available.

Project page can be found at: https://github.com/bbraithwaite/MSTestExtensions

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on MSTestExtensions:

Repository Stars
bbraithwaite/SmsQuiz
SmsQuiz Project for blog series
Version Downloads Last updated
4.0.0 1,515 4/28/2015
3.0.0 4,591 11/29/2012
2.0.0 90 8/16/2012
1.0.1 51 2/5/2012
1.0.0 127 1/31/2012

* Added ThrowsAsync assertion
* Exception message no longer converts to uppercase for failures
* Added option to explicitly assert exception type i.e. ignore subclasses