style(test): remove throws of NotImplementedException

This commit is contained in:
Oliver Booth 2023-04-01 22:00:40 +01:00
parent 23282db3a9
commit d7bf9d1788
No known key found for this signature in database
GPG Key ID: 20BEB9DC87961025
1 changed files with 2 additions and 6 deletions

View File

@ -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<byte>();
}
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<byte>();
}
public override void Initialize()
{
throw new NotImplementedException();
}
}
}