mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 23:15:40 +00:00
style(test): remove throws of NotImplementedException
This commit is contained in:
parent
23282db3a9
commit
d7bf9d1788
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user