Add unit test for issue 338.

This commit is contained in:
2021-03-07 22:31:03 +00:00
parent 36c29b855c
commit 4789ff2e21

19
Aaru.Tests/Issues/338.cs Normal file
View File

@@ -0,0 +1,19 @@
using System.IO;
using NUnit.Framework;
namespace Aaru.Tests.Issues
{
/*
* SilasLaspada commented on Apr 18, 2020
*
* When running the entropy command on an NRG image, Aaru crashes with an unhandled exception. NRG image.zip
*/
// 20200621 CLAUNIA: Fixed in c80baa5efb4ea8a9e4347278086b2414469ae4c6
[TestFixture]
public class _338 : OpticalImageReadIssueTest
{
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue338");
public override string TestFile => "TempImage.nrg.xz";
}
}