ObjectAssertions 0.4.0-preview6

This is a prerelease version of ObjectAssertions.
dotnet add package ObjectAssertions --version 0.4.0-preview6
NuGet\Install-Package ObjectAssertions -Version 0.4.0-preview6
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="ObjectAssertions" Version="0.4.0-preview6">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ObjectAssertions --version 0.4.0-preview6
#r "nuget: ObjectAssertions, 0.4.0-preview6"
#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 ObjectAssertions as a Cake Addin
#addin nuget:?package=ObjectAssertions&version=0.4.0-preview6&prerelease

// Install ObjectAssertions as a Cake Tool
#tool nuget:?package=ObjectAssertions&version=0.4.0-preview6&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),
        IgnoredProperty = ObjectAssertionsHelpers.Ignore<Foo>("Not in test scope"")
    };

    assertions.Assert();
}

All delegates passed to object initializer will be invoked within .Assert() call. You can use ObjectAssertionsHelpers.Ignore<T>(string reason) method to ignore certain assertions and express intent.

Assertion library integrations

FluentAssertions

Use AssertionScope class:

using (new AssertionScope())
{
    new MyClassAssertions(myClass)
    {
        MyInt = i => i.Should().Be(5),        
        MyString = s => s.Should().Be("Hello"),
        MyBool = b => Should().Be(true),
        IgnoredProperty = ObjectAssertionsHelpers.Ignore<Foo>("Not in test scope"")
    }.Assert();
}

NUnit

Use Assert.Multiple method:

Assert.Multiple(() =>
{
    new MyClassAssertions(myClass)
    {
        MyInt = i => Assert.AreEqual(5, i),        
        MyString = s => Assert.AreEqual("Hello", s),
        MyBool = b => Assert.AreEqual(true, b),
        IgnoredProperty = ObjectAssertionsHelpers.Ignore<Foo>("Not in test scope"")
    }.Assert();
}

Shoudly

Use ShouldSatisfyAllConditions extension method:

var assertions = new MyClassAssertions(myClass)
{
    MyInt = i => i.ShouldBe(5),        
    MyString = s => s.ShouldBe("Hello"),
    MyBool = b => ShouldBe(true),
    IgnoredProperty = ObjectAssertionsHelpers.Ignore<Foo>("Not in test scope"")
}.CollectAssertions();

myClass.ShouldSatisfyAllConditions(assertions);
There are no supported framework assets in this package.

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
0.4.0-preview6 174 12/10/2023
0.3.0-preview5 67 12/8/2023
0.2.0-preview4 94 7/11/2023
0.1.0-preview3 82 7/5/2023
0.0.0-preview2 86 4/20/2023
0.0.0-preview1 80 4/5/2023