diff --git a/X10D.Tests/src/IO/StreamTests.cs b/X10D.Tests/src/IO/StreamTests.cs index ba7eb0e..2bb5d3c 100644 --- a/X10D.Tests/src/IO/StreamTests.cs +++ b/X10D.Tests/src/IO/StreamTests.cs @@ -157,17 +157,15 @@ public partial class StreamTests protected override void HashCore(byte[] array, int ibStart, int cbSize) { - throw new NotImplementedException(); } protected override byte[] HashFinal() { - throw new NotImplementedException(); + return Array.Empty(); } public override void Initialize() { - throw new NotImplementedException(); } } @@ -175,17 +173,15 @@ public partial class StreamTests { protected override void HashCore(byte[] array, int ibStart, int cbSize) { - throw new NotImplementedException(); } protected override byte[] HashFinal() { - throw new NotImplementedException(); + return Array.Empty(); } public override void Initialize() { - throw new NotImplementedException(); } } }