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.
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.
// Install Test4Net.Test as a Cake Addin
#addin nuget:?package=Test4Net.Test&version=2022.11.5.2

// Install Test4Net.Test as a Cake Tool
#tool nuget:?package=Test4Net.Test&version=2022.11.5.2

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. 
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 895 11/5/2022
2022.11.4.1 411 11/4/2022
2022.11.3.1 410 11/3/2022
2022.11.2.2 421 11/2/2022
2022.11.1.14 394 11/1/2022
2022.11.1.8 391 11/1/2022
2022.11.1.1 388 11/1/2022
2022.10.28.5 421 10/28/2022