Cuemon.Extensions.Xunit.App
6.3.0
Prefix Reserved
See the version list below for details.
dotnet add package Cuemon.Extensions.Xunit.App --version 6.3.0
NuGet\Install-Package Cuemon.Extensions.Xunit.App -Version 6.3.0
<PackageReference Include="Cuemon.Extensions.Xunit.App" Version="6.3.0" />
paket add Cuemon.Extensions.Xunit.App --version 6.3.0
#r "nuget: Cuemon.Extensions.Xunit.App, 6.3.0"
// Install Cuemon.Extensions.Xunit.App as a Cake Addin #addin nuget:?package=Cuemon.Extensions.Xunit.App&version=6.3.0 // Install Cuemon.Extensions.Xunit.App as a Cake Tool #tool nuget:?package=Cuemon.Extensions.Xunit.App&version=6.3.0
Provides a convenient set of default API additions for building .NET Core test projects based on xUnit.
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- Cuemon.Extensions.Xunit (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting.AspNetCore (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting.AspNetCore.Mvc (>= 6.3.0)
-
net5.0
- Cuemon.Extensions.Xunit (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting.AspNetCore (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting.AspNetCore.Mvc (>= 6.3.0)
-
net6.0
- Cuemon.Extensions.Xunit (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting.AspNetCore (>= 6.3.0)
- Cuemon.Extensions.Xunit.Hosting.AspNetCore.Mvc (>= 6.3.0)
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 |
---|---|---|
9.0.0-preview.5 | 54 | 9/13/2024 |
9.0.0-preview.4 | 559 | 9/6/2024 |
9.0.0-preview.3 | 52 | 8/31/2024 |
9.0.0-preview.2 | 70 | 8/23/2024 |
9.0.0-preview.1 | 62 | 8/17/2024 |
8.3.2 | 1,042 | 8/4/2024 |
8.3.1 | 662 | 6/2/2024 |
8.3.0 | 288 | 4/9/2024 |
8.2.0 | 463 | 3/3/2024 |
8.1.0 | 308 | 2/10/2024 |
8.1.0-rc1 | 116 | 2/8/2024 |
8.1.0-preview.52 | 65 | 2/5/2024 |
8.1.0-preview.20 | 64 | 1/22/2024 |
8.1.0-preview | 134 | 1/16/2024 |
8.0.1 | 196 | 1/11/2024 |
8.0.0 | 361 | 11/14/2023 |
8.0.0-rc2 | 179 | 11/13/2023 |
8.0.0-rc1 | 233 | 11/7/2023 |
8.0.0-preview.183 | 77 | 11/13/2023 |
8.0.0-preview.176 | 62 | 11/12/2023 |
8.0.0-preview.158 | 57 | 11/9/2023 |
7.1.0 | 378 | 12/11/2022 |
7.0.0 | 485 | 11/9/2022 |
7.0.0-rc.2 | 104 | 11/3/2022 |
7.0.0-rc.1 | 102 | 10/26/2022 |
7.0.0-alpha.2 | 107 | 10/16/2022 |
7.0.0-alpha.1 | 113 | 9/23/2022 |
7.0.0-alpha | 353 | 7/12/2022 |
6.4.1 | 585 | 5/8/2022 |
6.4.0 | 634 | 1/24/2022 |
6.4.0-rc | 354 | 1/23/2022 |
6.3.0 | 1,380 | 11/28/2021 |
6.2.0 | 448 | 5/30/2021 |
6.1.0 | 453 | 5/16/2021 |
6.0.1 | 413 | 5/3/2021 |
6.0.1-rc | 239 | 5/3/2021 |
6.0.0 | 383 | 4/18/2021 |
6.0.0-rc.23 | 162 | 4/18/2021 |
6.0.0-rc.21 | 136 | 4/12/2021 |
6.0.0-rc.20 | 155 | 4/1/2021 |
6.0.0-rc.18 | 241 | 3/22/2021 |
6.0.0-rc.17 | 148 | 3/14/2021 |
6.0.0-rc.16 | 170 | 3/7/2021 |
6.0.0-rc.15 | 164 | 3/4/2021 |
6.0.0-rc.14 | 181 | 3/4/2021 |
6.0.0-rc.12 | 193 | 3/3/2021 |
Version: 6.3.0
Availability: .NET Core 3.1, .NET 5.0, .NET 6.0
# ALM
- ADDED TFM for .NET 6
- CHANGED Dependencies to latest and greatest with respect to TFM
# New Features
- ADDED InMemoryTestStore class in the Cuemon.Extensions.Xunit namespace that provides a default base implementation of the ITestStore{T} interface
- ADDED ITestStore{T} interface in the Cuemon.Extensions.Xunit namespace that represents the members needed for adding and querying a store tailored for unit testing
- ADDED GenericHostTestFactory class in the Cuemon.Extensions.Xunit.Hosting namespace that provides a set of static methods for IHost unit testing
- ADDED IGenericHostTest interface in the Cuemon.Extensions.Xunit.Hosting namespace that represents the members needed for bare-bone DI testing with support for IHost
- CHANGED IMiddlewareTest class in the Cuemon.Extensions.Xunit.Hosting.AspNetCore namespace to inherit from IGenericHostTest
- ADDED IWebApplicationTest interface in the Cuemon.Extensions.Xunit.Hosting.AspNetCore.Mvc namespace that the members needed for ASP.NET Core MVC, Razor and related testing
- ADDED WebApplicationTestFactory class in the Cuemon.Extensions.Xunit.Hosting.AspNetCore.Mvc namespace that provides a set of static methods for ASP.NET Core MVC, Razor and related unit testing
Version: 6.0.0
Availability: .NET Core 3.1, .NET 5.0
# References
- Cuemon.Extensions.Xunit.Hosting.AspNetCore.Mvc
- Cuemon.Extensions.Xunit.Hosting.AspNetCore
- Cuemon.Extensions.Xunit.Hosting
- Cuemon.Extensions.Xunit