Automation.TestFramework.SourceGenerators 1.0.0

Requires NuGet 2.12 or higher.

dotnet add package Automation.TestFramework.SourceGenerators --version 1.0.0
                    
NuGet\Install-Package Automation.TestFramework.SourceGenerators -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="Automation.TestFramework.SourceGenerators" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Automation.TestFramework.SourceGenerators" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Automation.TestFramework.SourceGenerators" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Automation.TestFramework.SourceGenerators --version 1.0.0
                    
#r "nuget: Automation.TestFramework.SourceGenerators, 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.
#:package Automation.TestFramework.SourceGenerators@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Automation.TestFramework.SourceGenerators&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Automation.TestFramework.SourceGenerators&version=1.0.0
                    
Install as a Cake Tool

Automation.TestFramework.SourceGenerators

This is a source generator used to generate the Summary of a test case whose steps are named methods defined in a test class.

Getting started

  1. Given a test project configured to use Automation.TestFramework.Dynamic (aka dynamic), add the NuGet package Automation.TestFramework.SourceGenerators.
  2. Create a test class in the same way as if using Automation.TestFramework v1.

For example:

using Automation.TestFramework;

[TestCase("TC001")] // this is cosmetic
public partial class TestCase1
{
    // define test data
    private const string WebsiteUrl = "https://my.site.com";
    private const string UserName = "user";
    private const string Password = "password";

    [Summary("Log in to website")]
    public partial void LoginToWebsite();

    [Precondition(1, "The user has an account on the website")]
    private void CreateUserAccount() {...}

    [Input(1, "The user has an account on the website")]
    private void OpenWebBrowser() {...} // use WebsiteUrl

    [Input(2, "Enter the user name")]
    private void EnterUserName() {...} // use Username

    [Input(3, "Enter the password")]
    private void EnterPassword() {...} // use Password

    [Input(4, "Click the Login button")]
    private void LogIn() {...}

    [ExpectedResult(4, "The user is logged in")]
    private void VerifyUserIsLoggedIn() {...}
}

This generates the Summary as:

public partial void LoginToWebsite()
{
    TestCase.Current.Descriptor
        .AddStep(StepType.Precondition, "The user has an account on the website", CreateUserAccount)
        .AddStep(StepType.Input, "The user has an account on the website", OpenWebBrowser)
        .AddStep(StepType.Input, "Enter the user name", EnterUserName)
        .AddStep(StepType.Input, "Enter the password", EnterPassword)
        .AddStep(StepType.Input, "Click the Login button", LogIn)
        .AddStep(StepType.ExpectedResult, "The user is logged in", VerifyUserIsLoggedIn)
        ;
}

The only difference from v1 is that the Summary method is now partial, and so is the test class.

Attributes

The source generator provides the same attributes as v1. These correspond to the 5 types of steps defined by dynamic:

  • [Setup]
  • [Precondition]
  • [Input]
  • [ExpectedResult]
  • [Cleanup]

Each of these attributes defines:

  • the order in which the step is to be executed, relative to other steps of the same type. If not specified, the default value is 1.
  • the step description, optional

Features

Async steps

The source generator detects if a step is sync or async.

For example, given this test class:


public partial class TestCase1
{
    [Summary("Log in to website")]
    public partial void LoginToWebSite();

    [Input(1, "The user logs in to the website" )]
    private void OpenWebBrowserAndLogin() {...}

    [ExpectedResult(1, "The user is logged in")]
    private Task VerifyUserIsLoggedIn() {...}
}

Then Summary will be generated as:

public partial void LoginToWebsite()
{
    TestCase.Current.Descriptor
        .AddStep(StepType.Input, "The user logs in to the website", OpenWebBrowserAndLogin)
        .AddAsyncStep(StepType.ExpectedResult, "The user is logged in", VerifyUserIsLoggedIn)
        ;
}

Readability

All the test case attributes support specifying a description that shows in the test report. This is optional though.

If the description is missing, then the method name is used -- but not as is. It is 'humanized' using https://github.com/Humanizr/Humanizer.

[Setup] and [Cleanup] can be defined in the class hierarchy

This works in the same way as if these two were class constructor and Dispose.

For example, given this test class hierarchy:

public class TestCaseBase
{
    [Setup(1, "Run this first")]
    public void RunThisFirst()
    {
    }
    
    [Cleanup(1, "Run this last")]
    public void RunThisLast()
    {
    }
}

public partial class TestCase1 : TestCaseBase
{
    [Summary("Log in to website")]
    public partial void LoginToWebsite();

    [Input(1, "The user logs in to the website" )]
    private void OpenWebBrowserAndLogin() {...}

    [ExpectedResult(1, "The user is logged in")]
    private Task VerifyUserIsLoggedIn() {...}
    
    [Cleanup(1, "Close browser")]
    private void CloseBrowser() { ... }
}

Then the Summary method will be generated to include steps from the base class:

public partial void LoginToWebsite()
{
    TestCase.Current.Descriptor
        .AddStep(StepType.Setup, "Run this first", RunThisFirst)
        .AddStep(StepType.Input, "The user logs in to the website", OpenWebBrowserAndLogin)
        .AddAsyncStep(StepType.ExpectedResult, "The user is logged in", VerifyUserIsLoggedIn)
        .AddStep(StepType.Cleanup, "Close browser", CloseBrowser)
        .AddStep(StepType.Cleanup, "Run this last", RunThisLast)
        ;
}

The discovery of [Setup] and [Cleanup] walks the entire test class hierarchy.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in 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
1.0.0 317 6/21/2025
1.0.0-rc.3 88 6/20/2025
1.0.0-rc.2 125 6/1/2025
1.0.0-rc.1 176 3/3/2025

First release