ObjectAssertions 0.0.0-preview2
See the version list below for details.
dotnet add package ObjectAssertions --version 0.0.0-preview2
NuGet\Install-Package ObjectAssertions -Version 0.0.0-preview2
<PackageReference Include="ObjectAssertions" Version="0.0.0-preview2"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add ObjectAssertions --version 0.0.0-preview2
#r "nuget: ObjectAssertions, 0.0.0-preview2"
// Install ObjectAssertions as a Cake Addin #addin nuget:?package=ObjectAssertions&version=0.0.0-preview2&prerelease // Install ObjectAssertions as a Cake Tool #tool nuget:?package=ObjectAssertions&version=0.0.0-preview2&prerelease
Object Assertions Library
ObjectAssertions is a C# library that provides a code generator for writing robust and future-proof test cases by enabling compile-time checks for all properties of an object.
With ObjectAssertions, developers can easily generate assertions for all properties of their classes and structs by implementing the IAssertsAllPropertiesOf
interface. The library is designed to provide compile-time safety by making it impossible to forget to test any newly added properties. If a new property is added to a class, the code won't compile until a corresponding assertion is added.
Quickstart
Let's assume this is class you want to test
public class MyClass
{
public int MyInt { get; set; }
public string MyString { get; set; }
public bool MyBool { get; set; }
}
Add package:
dotnet add package ObjectAssertions.Abstractions
dotnet add package ObjectAssertions.Generator
Define assertions class:
using ObjectAssertions.Abstractions;
public class MyClassAssertions : IAssertsAllPropertiesOf<MyClass>
{
}
Define test:
[Fact]
public void TestMyClass()
{
var myClass = new MyClass { MyInt = 5, MyString = "Hello", MyBool = true };
var assertions = new MyClassAssertions(myClass)
{
MyInt = i => Assert.Equal(5, i),
MyString = s => Assert.Equal("Hello", s),
MyBool = b => Assert.Equal(true, b),
};
assertions.Assert();
}
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 11,168 | 7/24/2024 |
0.4.0-preview6 | 246 | 12/10/2023 |
0.3.0-preview5 | 109 | 12/8/2023 |
0.2.0-preview4 | 127 | 7/11/2023 |
0.1.0-preview3 | 126 | 7/5/2023 |
0.0.0-preview2 | 126 | 4/20/2023 |
0.0.0-preview1 | 130 | 4/5/2023 |