mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Refactor] Use collection expressions.
This commit is contained in:
@@ -44,8 +44,8 @@ public class UDZO : BlockMediaImageTest
|
||||
|
||||
public override IMediaImage Plugin => new Udif();
|
||||
|
||||
public override BlockImageTestExpected[] Tests => new[]
|
||||
{
|
||||
public override BlockImageTestExpected[] Tests =>
|
||||
[
|
||||
new BlockImageTestExpected
|
||||
{
|
||||
TestFile = "DOS_1440.dmg.lz",
|
||||
@@ -53,14 +53,14 @@ public class UDZO : BlockMediaImageTest
|
||||
Sectors = 2880,
|
||||
SectorSize = 512,
|
||||
Md5 = "ff419213080574056ebd9adf7bab3d32",
|
||||
Partitions = new[]
|
||||
{
|
||||
Partitions =
|
||||
[
|
||||
new BlockPartitionVolumes
|
||||
{
|
||||
Start = 0,
|
||||
Length = 2880
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
new BlockImageTestExpected
|
||||
{
|
||||
@@ -69,14 +69,14 @@ public class UDZO : BlockMediaImageTest
|
||||
Sectors = 1440,
|
||||
SectorSize = 512,
|
||||
Md5 = "c2be571406cf6353269faa59a4a8c0a4",
|
||||
Partitions = new[]
|
||||
{
|
||||
Partitions =
|
||||
[
|
||||
new BlockPartitionVolumes
|
||||
{
|
||||
Start = 0,
|
||||
Length = 1440
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
new BlockImageTestExpected
|
||||
{
|
||||
@@ -85,14 +85,14 @@ public class UDZO : BlockMediaImageTest
|
||||
Sectors = 3360,
|
||||
SectorSize = 512,
|
||||
Md5 = "92ea7a359957012a682ba126cfdef0ce",
|
||||
Partitions = new[]
|
||||
{
|
||||
Partitions =
|
||||
[
|
||||
new BlockPartitionVolumes
|
||||
{
|
||||
Start = 0,
|
||||
Length = 3360
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
new BlockImageTestExpected
|
||||
{
|
||||
@@ -101,14 +101,14 @@ public class UDZO : BlockMediaImageTest
|
||||
Sectors = 10240,
|
||||
SectorSize = 512,
|
||||
Md5 = "df3b4331a4a5652393ff55f001998439",
|
||||
Partitions = new[]
|
||||
{
|
||||
Partitions =
|
||||
[
|
||||
new BlockPartitionVolumes
|
||||
{
|
||||
Start = 0,
|
||||
Length = 10240
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
new BlockImageTestExpected
|
||||
{
|
||||
@@ -214,5 +214,5 @@ public class UDZO : BlockMediaImageTest
|
||||
SectorSize = 512,
|
||||
Md5 = "b7d4ad55c7702658081b6578b588a57f"
|
||||
}
|
||||
};
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user