EasyTestFile.TUnit
2.1.10
dotnet add package EasyTestFile.TUnit --version 2.1.10
NuGet\Install-Package EasyTestFile.TUnit -Version 2.1.10
<PackageReference Include="EasyTestFile.TUnit" Version="2.1.10" />
paket add EasyTestFile.TUnit --version 2.1.10
#r "nuget: EasyTestFile.TUnit, 2.1.10"
// Install EasyTestFile.TUnit as a Cake Addin #addin nuget:?package=EasyTestFile.TUnit&version=2.1.10 // Install EasyTestFile.TUnit as a Cake Tool #tool nuget:?package=EasyTestFile.TUnit&version=2.1.10
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- EasyTestFile (>= 2.1.10)
- TUnit.Core (>= 0.1.1061)
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 |
---|---|---|
2.1.10 | 91 | 10/17/2024 |