From d7bf9d178882dc9ddd7b35f5d9a6f5901c126d89 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sat, 1 Apr 2023 22:00:40 +0100 Subject: [PATCH] style(test): remove throws of NotImplementedException --- X10D.Tests/src/IO/StreamTests.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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(); } } }