EasyTestFile.XUnit 2.0.6

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package EasyTestFile.XUnit --version 2.0.6
NuGet\Install-Package EasyTestFile.XUnit -Version 2.0.6
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="EasyTestFile.XUnit" Version="2.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyTestFile.XUnit --version 2.0.6
#r "nuget: EasyTestFile.XUnit, 2.0.6"
#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 EasyTestFile.XUnit as a Cake Addin
#addin nuget:?package=EasyTestFile.XUnit&version=2.0.6

// Install EasyTestFile.XUnit as a Cake Tool
#tool nuget:?package=EasyTestFile.XUnit&version=2.0.6

EasyTestFile

EasyTestFile is a library that simplifies the creation and usage of testfiles in unittests. Testfiles (like text, json, xml, binary, jpg, etc. etc.) are named based on the class and method name, are created if not exist, and are embedded as resource making sure the execution of the test is deterministic and do not rely on untracked files etc.

EasyTestFile.XUnit

This package is required when your project uses NUnit for unittesting. Make sure your test class is annotated with the attribute [EasyTestFileXunit.UsesEasyTestFile].

Attribute usage

[UsesEasyTestFile]
public class TestClass1
{
    // The attribute is required when using XUnit.
}

Usage

Default options to load as text or load as stream:

[Fact]
public async Task LoadAsText()
{
    // Executing this test for the first time will create an empty testfile and throw an exception.
    // Executing this test for the second time, this statement will read the testfile
    // and returns the content as a string.
    string text = await EasyTestFile.LoadAsText();

    // and do whatever you want
}
[Fact]
public async Task LoadAsStream()
{
    // You can also load the testfile content as a stream.
    Stream stream = await EasyTestFile.LoadAsStream();

}

Or load the TestFile object first

[Fact]
public async Task LoadAsTestFile()
{
    // You can also load the test file as a TestFile object.
    TestFile testFile = EasyTestFile.Load();

    // then you can load the content as a stream
    Stream stream = await testFile.AsStream();

    // or like
    string text = await testFile.AsText();
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework 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 tizen40 was computed.  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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on EasyTestFile.XUnit:

Repository Stars
coenm/ImageHash
Library containing perceptual hash algorithms using the ImageSharp library
Version Downloads Last updated
2.1.5-alpha 286 1/22/2024
2.0.6 2,177 7/21/2022
2.0.3 1,475 2/15/2022
2.0.2 585 2/4/2022
1.2.2 508 1/31/2022
1.0.5 1,352 11/29/2021
1.0.4 3,051 11/24/2021
1.0.3 329 11/15/2021
1.0.2 615 11/9/2021
0.1.27-alpha 225 11/7/2021
0.1.26-alpha 170 11/6/2021