Precept.TestPlatform 0.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Precept.TestPlatform --version 0.1.2
                    
NuGet\Install-Package Precept.TestPlatform -Version 0.1.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="Precept.TestPlatform" Version="0.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Precept.TestPlatform" Version="0.1.2" />
                    
Directory.Packages.props
<PackageReference Include="Precept.TestPlatform" />
                    
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 Precept.TestPlatform --version 0.1.2
                    
#r "nuget: Precept.TestPlatform, 0.1.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.
#:package Precept.TestPlatform@0.1.2
                    
#: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=Precept.TestPlatform&version=0.1.2
                    
Install as a Cake Addin
#tool nuget:?package=Precept.TestPlatform&version=0.1.2
                    
Install as a Cake Tool

Precept.TestPlatform

Precept's test runner: a Microsoft.Testing.Platform test framework that discovers and executes Precept tests. A test project starts here — this package brings in Precept.Core, makes the project an executable and generates its entry point.

dotnet add package Precept.TestPlatform
public class CheckoutTests
{
    [Test("A customer can check out")]
    [Retry(3, DelayMilliseconds = 200)]
    public async Task Checkout()
    {
        var response = await Rest.Post("/orders")
            .WithJsonBody(new { sku = "ABC", quantity = 2 })
            .SendAsync();

        await Assert.That(response).ToHaveStatusAsync(HttpStatusCode.Created);
    }
}

There is no Main and no OutputType to write. The first build leaves a commented precept.json in the project.

One thing a NuGet package cannot do for you: on the .NET 10 SDK, dotnet test has to be told to use Microsoft.Testing.Platform, in a global.json beside the project or anywhere above it.

{
  "test": {
    "runner": "Microsoft.Testing.Platform"
  }
}

Without it dotnet test fails with "Testing with VSTest target is no longer supported". Running the test binary directly — dotnet run -- --list-tests — works either way.


Part of Precept, a .NET 10 test automation framework. Full documentation: running a suite · execution model · filtering · configuration

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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
0.11.0 0 9/15/2026
0.10.0 90 9/10/2026
0.8.0 81 9/10/2026
0.7.0 83 9/9/2026
0.6.0 112 9/2/2026
0.5.1 99 9/2/2026
0.5.0 99 9/1/2026
0.4.1 118 8/16/2026
0.4.0 114 8/16/2026
0.3.0 104 8/15/2026
0.2.0 99 8/15/2026
0.1.3 102 8/13/2026
0.1.2 104 8/13/2026
0.1.1 100 8/13/2026
0.1.0 100 8/12/2026