mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix naming style.
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
|
||||
namespace Aaru.Tests.Images.QEMU;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.IO;
|
||||
using Aaru.CommonTypes;
|
||||
using Aaru.CommonTypes.Interfaces;
|
||||
@@ -35,11 +36,12 @@ using Aaru.DiscImages;
|
||||
using NUnit.Framework;
|
||||
|
||||
[TestFixture]
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public class QED : BlockMediaImageTest
|
||||
{
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "QEMU", "QEMU Enhanced Disk");
|
||||
public override IMediaImage _plugin => new Qed();
|
||||
public override IMediaImage Plugin => new Qed();
|
||||
|
||||
public override BlockImageTestExpected[] Tests => new[]
|
||||
{
|
||||
@@ -49,7 +51,7 @@ public class QED : BlockMediaImageTest
|
||||
MediaType = MediaType.GENERIC_HDD,
|
||||
Sectors = 251904,
|
||||
SectorSize = 512,
|
||||
MD5 = "4bfc9e9e2dd86aa52ef709e77d2617ed",
|
||||
Md5 = "4bfc9e9e2dd86aa52ef709e77d2617ed",
|
||||
Partitions = new[]
|
||||
{
|
||||
new BlockPartitionVolumes
|
||||
|
||||
Reference in New Issue
Block a user