Grille.ConsoleTestLib 0.5.0

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

// Install Grille.ConsoleTestLib as a Cake Tool
#tool nuget:?package=Grille.ConsoleTestLib&version=0.5.0

ConsoleTestLib

Library to write standalone console programs for testing. This library relies heavily on delayed execution of lambdas, so knowledge how variable capture works is useful.

Debugging

The parallel nature of RunTests() can lead to problems while debugging. Its better to use RunTestsSynchronously() for that purpose.

Disclaimer

I created this as a private experiment, you probably shouldn't use this over something proper like XUnit. Also, I don't necessarily care much about braking changes here, so keep that in mind before updating.

Example

using static Grille.ConsoleTestLib.GlobalTestSystem;
using static Grille.ConsoleTestLib.TestResult;
using Grille.ConsoleTestLib.Asserts;

int i = 0;

Test($"value on task create '{i}'", () =>
{
    Succes($"value on task run '{i}'");
});

Section("Basic");
for (i = 0; i < 4; i++)
{
    int number = i;
    Test($"test_{number}", () =>
    {
        if (number == 1)
            Succes("number is 1");
        if (number == 3)
            throw new Exception("number is 3");
        if (number > 1)
            Fail("number is > 1");
    });
}

var sw = Stopwatch.StartNew();

Section("Async");
Test("async_test_1", () =>
{
    Succes($"{sw.ElapsedMilliseconds}ms");
});
Test("async_test_2", () =>
{
    Task.Delay(4000).Wait();
    Succes($"{sw.ElapsedMilliseconds}ms");
});
Test("async_test_3", () =>
{
    Task.Delay(4000).Wait();
    Succes($"{sw.ElapsedMilliseconds}ms");
});
Test("async_test_4", () =>
{
    Task.Delay(2000).Wait();
    Succes($"{sw.ElapsedMilliseconds}ms");
});
Test("async_test_5", () =>
{
    Succes($"{sw.ElapsedMilliseconds}ms");
});

RunTests();

Result

default
value on task create '0': OK value on task run '4'

Basic
test_0: OK
test_1: OK number is 1
test_2: FAIL number is > 1
test_3: ERROR
System.Exception: number is 3
   at ConsoleTestApp.Program.<>c__DisplayClass0_1.<Main>b__6() in C:\Users\Grille\Documents\GitHub\ConsoleTestLib\ConsoleTestApp\Program.cs:line 30
   at Grille.ConsoleTestLib.TestCase.<>c__DisplayClass25_0.<CreateTask>b__0() in C:\Users\Grille\Documents\GitHub\ConsoleTestLib\ConsoleTestLib\TestCase.cs:line 74

Async
async_test_1: OK 72ms
async_test_2: OK 4118ms
async_test_3: OK 4118ms
async_test_4: OK 2108ms
async_test_5: OK 70ms

Results:
Testcases: 10
* Success: 8
* failure: 2
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.
  • net8.0

    • No dependencies.

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
0.5.0 109 4/13/2024
0.4.1 96 4/11/2024
0.4.0 89 4/9/2024
0.3.0 89 4/9/2024
0.2.0 109 4/6/2024
0.1.0 80 4/5/2024