Update NUnit.

This commit is contained in:
2024-05-02 03:40:35 +01:00
parent b9bbca1e3e
commit 47cc43aa29
42 changed files with 1148 additions and 1015 deletions

View File

@@ -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]));
}
}
}