mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Aaru.Tests] Reformat and cleanup.
This commit is contained in:
@@ -54,7 +54,7 @@ public class Sha384
|
||||
[Test]
|
||||
public void EmptyData()
|
||||
{
|
||||
byte[] data = new byte[1048576];
|
||||
var data = new byte[1048576];
|
||||
|
||||
var fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "Checksum test files", "empty"), FileMode.Open,
|
||||
FileAccess.Read);
|
||||
@@ -76,7 +76,7 @@ public class Sha384
|
||||
[Test]
|
||||
public void EmptyInstance()
|
||||
{
|
||||
byte[] data = new byte[1048576];
|
||||
var data = new byte[1048576];
|
||||
|
||||
var fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "Checksum test files", "empty"), FileMode.Open,
|
||||
FileAccess.Read);
|
||||
@@ -93,7 +93,7 @@ public class Sha384
|
||||
[Test]
|
||||
public void RandomData()
|
||||
{
|
||||
byte[] data = new byte[1048576];
|
||||
var data = new byte[1048576];
|
||||
|
||||
var fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "Checksum test files", "random"), FileMode.Open,
|
||||
FileAccess.Read);
|
||||
@@ -115,7 +115,7 @@ public class Sha384
|
||||
[Test]
|
||||
public void RandomInstance()
|
||||
{
|
||||
byte[] data = new byte[1048576];
|
||||
var data = new byte[1048576];
|
||||
|
||||
var fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "Checksum test files", "random"), FileMode.Open,
|
||||
FileAccess.Read);
|
||||
|
||||
Reference in New Issue
Block a user