EasyAssertions 1.0.0

dotnet add package EasyAssertions --version 1.0.0
NuGet\Install-Package EasyAssertions -Version 1.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="EasyAssertions" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyAssertions --version 1.0.0
#r "nuget: EasyAssertions, 1.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 EasyAssertions as a Cake Addin
#addin nuget:?package=EasyAssertions&version=1.0.0

// Install EasyAssertions as a Cake Tool
#tool nuget:?package=EasyAssertions&version=1.0.0

Easy-to-use fluent assertions with actually useful failure messages.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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 EasyAssertions:

Repository Stars
soxtoby/SlackNet
A comprehensive Slack API client for .NET
Version Downloads Last updated
1.0.0 203 11/30/2013
0.7.1 65 11/5/2012
0.7.0 48 10/1/2012
0.6.1 49 7/30/2012
0.6.0 48 7/29/2012
0.5.0 53 7/23/2012
0.4.1 50 7/9/2012
0.4.0 51 7/9/2012
0.3.1 49 7/1/2012
0.3.0 48 7/1/2012
0.2.0 49 6/3/2012
0.1.0 49 5/30/2012

New Assertions:
- ItemsShouldBeIn, for asserting that a collection is a subset of another collection.
- ShouldNotOnlyContain, for asserting that a collection is not a subset of another collection.
- ShouldMatch for tree structures.
- ShouldBe for strings with optional case insensitivity.
- Should.Throw with no generic parameter that expect any Exception type.
- AndShouldNotBeA, for asserting that the actual value of Should.Throw is not of a particular type.
- ShouldBeEmpty, for asserting that a string is empty.
- ShouldMatch & ShouldNotMatch, for asserting on strings with regular expressions.
     
Other Changes/Fixes:
- Added null checks to all assertions.
- Fixed an exception that often occurred while running several tests in parallel.
- Fixed difference index when actual string is longer than expected string.
- String assertion failure messages no longer insert backslashes before braces.