XspecT 13.3.2

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

// Install XspecT as a Cake Tool
#tool nuget:?package=XspecT&version=13.3.2

XspecT: A fluent unit testing framework

Framework for writing and running automated tests in .Net in a fluent style, based on the popular "Given-When-Then" pattern, built upon XUnit, Moq, AutoMock, AutoFixture and FluentAssertions.

Whether you are beginner or expert in unit-testing, this framework will help you to write more descriptive, concise and maintainable tests.

Usage

It is assumed that you are already familiar with Xunit and Moq, or similar test- and mocking frameworks. This package includes a fluent assertion framework, which is built upon FluentAssertions, but with a less worthy syntax, based on the verb Is instead of Should.

Is-assertions are recommended over Should-assertions for making the tests read more like specifications, listing requirements rather than asserting expected results.

This is an example of a complete test class (specification) with one test method (requirement):

using XspecT.Verification;
using XspecT.Fixture;

using static App.Calculator;

namespace App.Test;

public class CalculatorSpec : StaticSpec<int>
{
    [Fact] public void WhenAdd_1_and_2_ThenSumIs_3() => Given(1, 2).When(Add).Then().Result.Is(3);
}

Test a static method with [Theory]

If you are used to writing one test class per production class and use Theory for test input, you can use a similar style with XspecT. First you create your test-class overriding StaticSpec<[ReturnType]> with the expected return type as generic argument. Then create a test-method, attributed with Theory and InlineData, called When[Something]. This method call Given and When, in any order, to setup the test pipeline with test data and the method to test. Finally verify the result by calling Then().Result (or only Result) on the returned pipeline and check the result with Is.

Example:

using XspecT.Verification;
using XspecT.Fixture;

using static App.Calculator;

namespace App.Test;

public class CalculatorSpec : StaticSpec<int>
{
    [Theory]
    [InlineData(1, 1, 2)]
    [InlineData(3, 4, 7)]
    public void GivenTwoNumbers_WhenAdd_ReturnSum(int term1, int term2, int sum)
        => Given(term1, term2).When(Add).Result.Is(sum);

    [Theory]
    [InlineData(1, 1, 1)]
    [InlineData(3, 4, 12)]
    public void WhenMultiplyThenReturnProduct(int factor1, int factor2, int product)
        => Given(factor1, factor2).When(Multiply).Result.Is(product);
}

For more complex and realistic scenarios, it is recommended to create tests in a separate project from the production code, named [MyProject].Spec. The test-project should mimmic the production project's folder structure, but in addition have one folder for each class to test, named as the class. Within that folder, create one test-class per method to test.

Test a static void method

  • When testing a static void method, there is no return value to verify in result and by convention the generic TResult parameter is set to object.
  • However you can use Throws or NotThrows to verify exceptions thrown.

Example:

namespace MyProject.Test.Validator;

public abstract class WhenVerifyAreEqual : StaticSpec<object>
{
    protected WhenVerifyAreEqual() => When<int, int>(MyProject.Validator.VerifyAreEqual);

    public class Given_1_And_2 : WhenVerifyAreEqual
    {
        [Fact] public void ThenThrows_NotEqual() => Given(1, 2).Then().Throws<NotEqual>();
    }

    public class Given_2_And_2 : WhenVerifyAreEqual
    {
        [Fact] public void ThenDoNotThrow() => Given(2, 2).Then().DoesNotThrow();
    }
}

Test a class with dependencies

  • To test an instance method [MyClass].[MyMethod], inherit XspecT.SubjectSpec<[MyClass], TResult>.

  • It is recommended practice to create a common baseclass for all tests of [MyClass], named [MyClass]Spec.

  • The subject under test (sut) will be created automatically with mocks and default values by AutoMock. You can supply or modify you own constructor arguments by calling Given.

  • For each method to test, create an abstract class named When[MyMethod] inheriting [MyClass]Spec in the same way as for static methods.

  • To mock behaviour of any dependency, provide the mocking by calling Given<[TheService]>().That(_ => _.[TheMethod](...)).Returns/Throws(). Each call to Given will provide additional arrangement that will be applied on test execution in the inversed order.

  • To verify a call to a dependency, write Then<[TheService]>([SomeLambdaExpression]).

  • Both mocking and verification of behaviour is based on Moq framework.

Example:

namespace MyProject.Spec.ShoppingService;

public abstract class WhenPlaceOrder : SubjectSpec<MyProject.ShoppingService, object>
{
    protected WhenPlaceOrder() 
        => When(_ => _.PlaceOrder(An<int>()))
        .Given<ICartRepository>().That(_ => _.GetCart(The<int>()))
        .Returns(() => A<Cart>(_ => _.Id = The<int>()));

    [Fact] public void ThenOrderIsCreated() => Then<IOrderService>(_ => _.CreateOrder(The<Cart>()));

    [Fact] public void ThenLogsOrderCreated()
        => Then<ILogger>(_ => _.Information($"OrderCreated from Cart {The<int>()}"));
}

Test async methods

All the examples above also works for async methods, with small modifications.

More examples can be found as Unit tests in the source code.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
13.3.2 140 4/7/2024
13.3.1 84 1/31/2024
13.3.0 238 1/20/2024
13.2.3 87 1/15/2024
13.2.2 89 1/13/2024
13.2.1 92 1/2/2024
13.2.0 143 1/2/2024
13.1.2 94 12/19/2023
13.1.1 136 12/19/2023
13.1.0 106 12/18/2023
13.0.1 90 12/17/2023
13.0.0 97 12/17/2023
12.2.2 98 12/16/2023
12.2.1 103 12/16/2023
12.2.0 91 12/16/2023
12.1.1 94 12/16/2023
12.1.0 119 12/3/2023
12.0.0 108 12/2/2023
11.0.4 102 11/28/2023
11.0.3 203 11/19/2023
11.0.2 107 11/19/2023
11.0.1 104 11/18/2023
11.0.0 104 11/18/2023
10.0.2 112 11/18/2023
10.0.1 103 11/15/2023
10.0.0 104 11/12/2023
9.3.2 94 11/12/2023
9.3.1 95 11/12/2023
9.3.0 102 11/11/2023
9.2.1 106 11/11/2023
9.2.0 108 11/5/2023
9.1.1 114 10/29/2023
9.1.0 110 10/28/2023
9.0.0 121 10/28/2023
8.5.1 115 10/27/2023
8.5.0 119 10/26/2023
8.4.0 129 10/22/2023
8.3.1 119 10/22/2023
8.3.0 117 10/22/2023
8.2.1 119 10/22/2023
8.2.0 111 10/21/2023
8.1.2 113 10/21/2023
8.1.1 113 10/20/2023
8.1.0 99 10/20/2023
8.0.1 119 10/18/2023
8.0.0 103 10/16/2023
7.2.0 101 10/16/2023
7.1.1 109 10/12/2023
7.1.0 132 10/8/2023
7.0.1 107 10/1/2023
7.0.0 106 10/1/2023
6.4.0 117 9/30/2023
6.3.2 108 9/30/2023
6.3.1 116 9/30/2023
6.3.0 110 9/25/2023
6.2.4 113 9/15/2023
6.2.3 110 9/15/2023
6.2.2 101 9/15/2023
6.2.1 120 9/15/2023
6.2.0 129 9/14/2023
6.1.3 122 9/13/2023
6.1.2 123 9/12/2023
6.1.1 122 9/12/2023
6.1.0 143 9/10/2023
6.0.0 116 9/9/2023
5.5.0 132 9/8/2023
5.4.3 115 9/7/2023
5.4.2 136 9/5/2023
5.4.1 122 9/3/2023
5.4.0 182 8/28/2023
5.3.1 140 8/28/2023
5.3.0 116 8/27/2023
5.2.0 124 8/27/2023
5.1.1 133 8/26/2023
5.1.0 134 8/26/2023
5.0.0 136 8/26/2023
4.5.2 119 8/26/2023
4.5.1 123 8/26/2023
4.5.0 131 8/26/2023
4.4.7 129 8/22/2023
4.4.6 128 8/22/2023
4.4.5 111 8/21/2023
4.4.4 140 8/20/2023
4.4.3 134 8/16/2023
4.4.2 148 8/15/2023
4.4.1 141 8/15/2023
4.4.0 158 8/15/2023
4.3.1 140 8/14/2023
4.3.0 138 8/14/2023
4.2.0 149 8/14/2023
4.1.1 140 8/11/2023
4.1.0 140 8/9/2023
4.0.0 145 8/8/2023
3.3.2 119 8/7/2023
3.3.1 135 8/6/2023
3.3.0 136 8/6/2023
3.2.1 136 8/6/2023
3.2.0 146 8/6/2023
3.1.0 162 8/5/2023
3.0.0 156 8/2/2023
2.4.1 152 8/1/2023
2.4.0 139 8/1/2023
2.3.1 145 7/30/2023
2.3.0 134 7/30/2023
2.2.3 137 7/29/2023
2.2.2 153 7/28/2023
2.2.1 145 7/24/2023
2.2.0 147 7/24/2023
2.1.1 153 7/23/2023
2.1.0 152 7/23/2023
2.0.1 146 7/21/2023
2.0.0 162 7/21/2023
1.1.0 169 7/20/2023
1.0.0 135 7/20/2023

Bugfix: Handle default enum values