Test4Net.Test 2022.11.5.2

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

Test4Net.Test

Introduction

Define a abstract model to instrument testing

Examples

Test with logger and configuration model

[TestClass]
public class MyTestClass : AbstractTestModel
{
    /// <summary>
    /// Get logger 
    /// </summary>
    /// <returns>Logger</returns>
    protected override ILog GetLogger() => GetLogger<MyTestClass>();

    /// <summary>
    /// Configure test class from a settings file
    /// </summary>
    public MyTestClass() : base( 
        configure => configure.AddJsonFile("appSetting.json")) { }

    [TestMethod]
    public void MyTestMethod()
    {
        var environmentUrl = Configuration["QaEnvUrl"];
        Log.Info($"Loading environment url: {environmentUrl} from configuration file");
    }
}

More about [logger and configuration][log-formatterxx] [Test4Net-Logging]:https://learn.microsoft.com/en-us/dotnet/core/extensions/console-log-formatter

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 was computed.  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 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on Test4Net.Test:

Package Downloads
Test4Net.UITest

Base model for UI Testing.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2022.11.5.2 1,003 11/5/2022
2022.11.4.1 482 11/4/2022
2022.11.3.1 484 11/3/2022
2022.11.2.2 492 11/2/2022
2022.11.1.14 459 11/1/2022
2022.11.1.8 456 11/1/2022
2022.11.1.1 462 11/1/2022
2022.10.28.5 491 10/28/2022