mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Update NUnit.
This commit is contained in:
@@ -23,9 +23,9 @@ public class Marshal
|
||||
{
|
||||
int count = Aaru.Helpers.Marshal.ConvertFromHexAscii(_testStrings[i], out byte[] buf);
|
||||
|
||||
Assert.AreEqual(_resultBytes[i].Length, buf.Length);
|
||||
Assert.AreEqual(_resultBytes[i].Length, count);
|
||||
Assert.AreEqual(_resultBytes[i], buf);
|
||||
Assert.That(buf, Has.Length.EqualTo(_resultBytes[i].Length));
|
||||
Assert.That(count, Is.EqualTo(_resultBytes[i].Length));
|
||||
Assert.That(buf, Is.EqualTo(_resultBytes[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user