Skip to content

demaconsulting/TestResults

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

62 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

TestResults Library

GitHub forks GitHub Repo stars GitHub contributors GitHub Build Quality Gate Status Security Rating NuGet

A lightweight C# library for programmatically creating test result files in TRX and JUnit formats.

Features

  • ✨ Simple API - Intuitive and easy-to-use object model
  • 🎯 Type-Safe - Strongly-typed C# classes for test results
  • πŸͺΆ Lightweight - Minimal external dependencies
  • πŸ”„ Multi-Target - Supports .NET 8, 9, and 10
  • πŸ“¦ NuGet Ready - Easy integration via NuGet package
  • πŸ“Š Multiple Formats - Supports both TRX and JUnit XML formats
  • βœ… Compatible - Works with Visual Studio, Azure DevOps, and CI/CD systems

Installation

Install via NuGet Package Manager:

dotnet add package DemaConsulting.TestResults

Or via Package Manager Console:

Install-Package DemaConsulting.TestResults

Quick Start

Creating Test Result Files

The following code-snippet shows how to create test result files in both TRX and JUnit XML formats:

using DemaConsulting.TestResults;
using DemaConsulting.TestResults.IO;

// Create a TestResults instance
var results = new TestResults { Name = "SomeTests" };

// Add some results
results.Results.Add(
    new TestResult
    {
        Name = "Test1",
        ClassName = "SomeTestClass",
        CodeBase = "MyTestAssembly",
        Outcome = TestOutcome.Passed,
        Duration = TimeSpan.FromSeconds(1.5),
        StartTime = DateTime.UtcNow
    });

results.Results.Add(
    new TestResult
    {
        Name = "Test2",
        ClassName = "SomeTestClass",
        CodeBase = "MyTestAssembly",
        Outcome = TestOutcome.Failed,
        ErrorMessage = "Expected value to be 42 but was 0",
        ErrorStackTrace = "at SomeTestClass.Test2() in Test.cs:line 15"
    });

// Save the results to a TRX file (Visual Studio format)
File.WriteAllText("results.trx", TrxSerializer.Serialize(results));

// Save the results to a JUnit XML file
File.WriteAllText("results.xml", JUnitSerializer.Serialize(results));

Automatic Format Detection

The library can automatically detect the format of test result files:

using DemaConsulting.TestResults.IO;

// Automatically detect and deserialize any supported format
var testResultsXml = File.ReadAllText("test-results.xml");
var results = Serializer.Deserialize(testResultsXml);

// Or identify the format without deserializing
var format = Serializer.Identify(testResultsXml);
if (format == TestResultFormat.Trx)
{
    Console.WriteLine("This is a TRX file");
}
else if (format == TestResultFormat.JUnit)
{
    Console.WriteLine("This is a JUnit XML file");
}

Converting Between Formats

The library supports reading and converting between TRX and JUnit formats:

using DemaConsulting.TestResults.IO;

// Automatic format detection and conversion
var testResultsXml = File.ReadAllText("test-results.xml");
var results = Serializer.Deserialize(testResultsXml);  // Works with TRX or JUnit
var trxXml = TrxSerializer.Serialize(results);
File.WriteAllText("converted.trx", trxXml);

// Or use specific deserializers if format is known
var junitXml = File.ReadAllText("junit-results.xml");
var results2 = JUnitSerializer.Deserialize(junitXml);
var trxXml2 = TrxSerializer.Serialize(results2);
File.WriteAllText("converted-from-junit.trx", trxXml2);

Advanced Usage

Capturing Standard Output

var result = new TestResult
{
    Name = "TestWithOutput",
    ClassName = "MyTests",
    CodeBase = "MyAssembly",
    Outcome = TestOutcome.Passed,
    SystemOutput = "Debug information\nTest completed successfully"
};

Handling Test Failures

var failedResult = new TestResult
{
    Name = "FailingTest",
    ClassName = "MyTests",
    CodeBase = "MyAssembly",
    Outcome = TestOutcome.Failed,
    ErrorMessage = "Assertion failed: Expected 100, got 50",
    ErrorStackTrace = "at MyTests.FailingTest() in Tests.cs:line 42",
    SystemError = "Additional error details"
};

Test Outcomes

The library supports the following test outcomes:

Successful Outcomes:

  • Passed - Test passed successfully
  • PassedButRunAborted - Test passed but the run was aborted
  • Warning - Test passed with warnings
  • Completed - Test completed successfully

Failure Outcomes:

  • Failed - Test failed
  • Error - Test encountered an error
  • Timeout - Test exceeded timeout limit
  • Aborted - Test was aborted

Skipped/Not Run Outcomes:

  • NotExecuted - Test was not executed
  • NotRunnable - Test is not runnable
  • Pending - Test is pending execution

Other Outcomes:

  • Inconclusive - Test result was inconclusive
  • Disconnected - Test was disconnected
  • InProgress - Test is currently in progress

The TestOutcome enum also provides helper extension methods:

  • IsPassed() - Returns true for passed outcomes (Passed, PassedButRunAborted, Warning)
  • IsFailed() - Returns true for failed outcomes (Failed, Error, Timeout, Aborted)
  • IsExecuted() - Returns true if the test was executed

Use Cases

This library is useful when you need to:

  • Generate TRX or JUnit XML files from custom test runners
  • Convert test results between formats (TRX ↔ JUnit)
  • Create test reports programmatically
  • Aggregate test results from multiple sources
  • Build custom testing tools that integrate with Visual Studio, Azure DevOps, or CI/CD systems

Documentation

Building from Source

# Clone the repository
git clone https://github.com/demaconsulting/TestResults.git
cd TestResults

# Restore tools
dotnet tool restore

# Restore dependencies
dotnet restore

# Build
dotnet build

# Run tests
dotnet test

Helper Scripts

For convenience, the repository includes helper scripts to streamline development:

Windows:

# Build and test the project
build.bat

# Run code formatting, spelling, and markdown checks
lint.bat

Linux/macOS:

# Build and test the project
./build.sh

# Run code formatting, spelling, and markdown checks
./lint.sh

Visual Studio Code:

If you're using VS Code, preconfigured tasks are available via Ctrl+Shift+B (Windows/Linux) or Cmd+Shift+B (macOS):

  • build - Build the solution (default build task)
  • test - Run all tests (default test task)
  • clean - Clean build artifacts
  • restore - Restore NuGet packages
  • lint - Check code formatting
  • format - Auto-format code

Requirements

  • .NET 8.0, 9.0, or 10.0

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Acknowledgments

Developed and maintained by DEMA Consulting.

About

Dotnet Test Results Library

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages