Enables EasyTestFile when writing test using TUnit.
$ dotnet add package EasyTestFile.TUnitEasyTestFile 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.
This package is required when your project uses NUnit for unittesting. Make sure your test class is annotated with the attribute [EasyTestFileXunit.UsesEasyTestFile].
[UsesEasyTestFile]
public class TestClass1
{
// The attribute is required when using XUnit.
}
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();
}