SpawnDev.Blazor.UnitTesting
2.0.3
dotnet add package SpawnDev.Blazor.UnitTesting --version 2.0.3
NuGet\Install-Package SpawnDev.Blazor.UnitTesting -Version 2.0.3
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.3" />
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.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SpawnDev.Blazor.UnitTesting, 2.0.3"
#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.3 // Install SpawnDev.Blazor.UnitTesting as a Cake Tool #tool nuget:?package=SpawnDev.Blazor.UnitTesting&version=2.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
NuGet
Package | Description | Link |
---|---|---|
SpawnDev.Blazor.UnitTesting | Blazor Unit Testing |
SpawnDev.Blazor.UnitTesting
Unit testing for Blazor
Supports .Net Blazor 6, 7, and 8.
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 | Versions 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.
-
net6.0
- Microsoft.AspNetCore.Components.WebAssembly (>= 6.0.25)
-
net7.0
- Microsoft.AspNetCore.Components.WebAssembly (>= 7.0.14)
-
net8.0
- Microsoft.AspNetCore.Components.WebAssembly (>= 8.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.