EasyTestFile.NUnit
2.1.10
dotnet add package EasyTestFile.NUnit --version 2.1.10
NuGet\Install-Package EasyTestFile.NUnit -Version 2.1.10
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.NUnit" Version="2.1.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyTestFile.NUnit --version 2.1.10
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasyTestFile.NUnit, 2.1.10"
#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.NUnit as a Cake Addin #addin nuget:?package=EasyTestFile.NUnit&version=2.1.10 // Install EasyTestFile.NUnit as a Cake Tool #tool nuget:?package=EasyTestFile.NUnit&version=2.1.10
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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.Nunit
This package is required when your project uses NUnit for unittesting. No setup is required.
Samples
[Test]
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
}
[Test]
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
[Test]
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- EasyTestFile (>= 2.1.10)
- NUnit (>= 4.2.2)
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 | 87 | 10/17/2024 |
2.1.5-alpha | 115 | 1/22/2024 |
2.0.6 | 464 | 7/21/2022 |
2.0.3 | 436 | 2/15/2022 |
2.0.2 | 427 | 2/4/2022 |
1.2.2 | 461 | 1/31/2022 |
1.0.5 | 1,030 | 11/29/2021 |
1.0.4 | 3,039 | 11/24/2021 |
1.0.3 | 312 | 11/15/2021 |
1.0.2 | 313 | 11/9/2021 |
0.1.27-alpha | 229 | 11/7/2021 |
0.1.26-alpha | 204 | 11/6/2021 |