SpawnDev.Blazor.UnitTesting 2.0.0

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

// Install SpawnDev.Blazor.UnitTesting as a Cake Tool
#tool nuget:?package=SpawnDev.Blazor.UnitTesting&version=2.0.0

NuGet

Package Description Link
SpawnDev.Blazor.UnitTesting Blazor Unit Testing NuGet version

SpawnDev.Blazor.UnitTesting

NuGet

Unit testing for Blazor

Supports .Net Blazor 6, 7, and 8.

Simply create a page for your test. Add the UnitTestsView component and assign the TestAssemblies and/or TestTypes parameters.

Give your unit test class the TestClass attribute and tag your public instance test methods with the TestMethod attribute. Example unit test class below.

    [TestClass]
    public class UnitTestExamples {

        [TestMethod]
        public void NotImplementedTest() {
            throw new NotImplementedException();
        }

        [TestMethod]
        public void ThreadSleepTest() {
            Thread.Sleep(1000);
        }

        [TestMethod]
        public async Task TaskDelayTest() {
            await Task.Delay(1000);
        }

        [TestMethod]
        public string ReturnAdditionalFailureInfo()
        {
            throw new Exception("Additional error info");
        }

        [TestMethod]
        public string ReturnValueTest()
        {
            return "Additional success info";
        }

        [TestMethod]
        public async Task<string> ReturnValueTestAsync()
        {
            await Task.Delay(1);
            return "Additional success info";
        }
    }

Example page for displaying your unit tests.

@using SpawnDev.Blazor.UnitTesting
@using System.Reflection

@page "/UnitTests"

<UnitTestsView TestAssemblies="_assemblies"></UnitTestsView>

@code {
    IEnumerable<Assembly>? _assemblies = new List<Assembly> {
        typeof(UnitTestsView).Assembly,
        typeof(UnitTests).Assembly
    };
}
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. 
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
2.0.0 160 3/20/2023
1.9.4 105 3/15/2023
1.9.3 100 3/15/2023