mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
18 lines
538 B
C#
18 lines
538 B
C#
namespace Aaru.Tests.Issues;
|
|
|
|
using System.IO;
|
|
using NUnit.Framework;
|
|
|
|
/*
|
|
* 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";
|
|
} |