EasyTestFile.XUnit
2.1.5-alpha
See the version list below for details.
dotnet add package EasyTestFile.XUnit --version 2.1.5-alpha
NuGet\Install-Package EasyTestFile.XUnit -Version 2.1.5-alpha
<PackageReference Include="EasyTestFile.XUnit" Version="2.1.5-alpha" />
paket add EasyTestFile.XUnit --version 2.1.5-alpha
#r "nuget: EasyTestFile.XUnit, 2.1.5-alpha"
// Install EasyTestFile.XUnit as a Cake Addin #addin nuget:?package=EasyTestFile.XUnit&version=2.1.5-alpha&prerelease // Install EasyTestFile.XUnit as a Cake Tool #tool nuget:?package=EasyTestFile.XUnit&version=2.1.5-alpha&prerelease
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 | 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. |
-
.NETStandard 2.0
- EasyTestFile (>= 2.1.5-alpha)
- xunit.abstractions (>= 2.0.3)
- xunit.assert (>= 2.4.1)
- xunit.extensibility.execution (>= 2.4.1)
-
.NETStandard 2.1
- EasyTestFile (>= 2.1.5-alpha)
- xunit.abstractions (>= 2.0.3)
- xunit.assert (>= 2.4.1)
- xunit.extensibility.execution (>= 2.4.1)
-
net5.0
- EasyTestFile (>= 2.1.5-alpha)
- xunit.abstractions (>= 2.0.3)
- xunit.assert (>= 2.4.1)
- xunit.extensibility.execution (>= 2.4.1)
-
net6.0
- EasyTestFile (>= 2.1.5-alpha)
- xunit.abstractions (>= 2.0.3)
- xunit.assert (>= 2.4.1)
- xunit.extensibility.execution (>= 2.4.1)
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.10 | 99 | 10/17/2024 |
2.1.5-alpha | 1,069 | 1/22/2024 |
2.0.6 | 2,229 | 7/21/2022 |
2.0.3 | 1,724 | 2/15/2022 |
2.0.2 | 615 | 2/4/2022 |
1.2.2 | 530 | 1/31/2022 |
1.0.5 | 1,376 | 11/29/2021 |
1.0.4 | 3,071 | 11/24/2021 |
1.0.3 | 346 | 11/15/2021 |
1.0.2 | 639 | 11/9/2021 |
0.1.27-alpha | 250 | 11/7/2021 |
0.1.26-alpha | 188 | 11/6/2021 |