mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add unit test for issue 325.
This commit is contained in:
21
Aaru.Tests/Issues/325.cs
Normal file
21
Aaru.Tests/Issues/325.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.IO;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Aaru.Tests.Issues
|
||||
{
|
||||
/*
|
||||
* SilasLaspada commented on Mar 19, 2020
|
||||
*
|
||||
* "Exception: Attempted to divide by zero." when opening a CUE/TRK image. The cue itself was hardcoded to a
|
||||
* specific path that I changed to a relative one. ImgBurn and IsoBuster can read the files fine. The exact files
|
||||
* I used are in https://drive.google.com/drive/folders/1tlixznMyuQiL_D57OLIDIPeX7a99yHqx?usp=sharing.
|
||||
*/
|
||||
|
||||
// 20200418 CLAUNIA: Fixed in e92c1e77418bb3fc1c9971b9bc76f47f86f2f76a
|
||||
[TestFixture]
|
||||
public class _325 : OpticalImageReadIssueTest
|
||||
{
|
||||
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue325");
|
||||
public override string TestFile => "TEST.cue";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user