FluentTestScaffold.Bdd 4.1.1

dotnet add package FluentTestScaffold.Bdd --version 4.1.1
                    
NuGet\Install-Package FluentTestScaffold.Bdd -Version 4.1.1
                    
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="FluentTestScaffold.Bdd" Version="4.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FluentTestScaffold.Bdd" Version="4.1.1" />
                    
Directory.Packages.props
<PackageReference Include="FluentTestScaffold.Bdd" />
                    
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 FluentTestScaffold.Bdd --version 4.1.1
                    
#r "nuget: FluentTestScaffold.Bdd, 4.1.1"
                    
#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 FluentTestScaffold.Bdd@4.1.1
                    
#: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=FluentTestScaffold.Bdd&version=4.1.1
                    
Install as a Cake Addin
#tool nuget:?package=FluentTestScaffold.Bdd&version=4.1.1
                    
Install as a Cake Tool

FluentTestScaffold.Bdd

Enables you to write BDD (Behavior Driven Development) style test with FluentTestScaffold.

Installation

dotnet add package FluentTestScaffold.Bdd

Documentation

For complete documentation, examples, and usage guides, visit: 📚 FluentTestScaffold Documentation

What's Included

  • BDD Style Fluent Api
  • Custom BDD style test results logging (currently only supports NUnit)

Quick Start

using FluentTestScaffold.Bdd;

var testScaffold = new TestScaffold()
    .UseIoc(services => {
            services.AddScoped<IAuthService, AuthService>();
    })
    .Build();
    
    
    testScaffold.Scenario("User can add item to shopping cart")
    .Given("a user is authenticated", scaffold => {
        // Setup user authentication
    })
    .When<CartService>("the user adds an item to cart", cartService => {
        // Perform the action
        cartService.AddItem(itemId);
    })
    .Then("the item should be in the cart", scaffold => {
        // Assert the result
        var cart = scaffold.Resolve<ICartService>().GetCart();
        Assert.Contains(itemId, cart.Items);
    });

For detailed examples and advanced usage, see the main documentation.

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 is compatible.  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 is compatible.  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. 
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
4.1.1 153 4/17/2026
4.1.0 8,832 4/7/2026
4.0.3 124 2/24/2026
4.0.2 112 1/14/2026
4.0.2-preview-20250929-230514 189 9/29/2025
4.0.1 10,046 9/29/2025
4.0.0-preview-20250820-231505 2,316 8/20/2025
3.8.11 184 7/31/2025
3.8.10 473 7/20/2025
3.8.9-preview-20250719-113545 114 7/19/2025
3.8.8-preview-20250719-112337 112 7/19/2025
3.8.7-preview-20250719-103808 106 7/19/2025
3.8.7-preview-20250719-103001 97 7/19/2025