mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
15 lines
331 B
C#
15 lines
331 B
C#
|
namespace ServicePoint.Tests;
|
||
|
|
||
|
public class CommandTests
|
||
|
{
|
||
|
private Connection _fakeConnection = Connection.Fake();
|
||
|
|
||
|
[Fact]
|
||
|
public void Test1()
|
||
|
{
|
||
|
var command = Command.Clear();
|
||
|
_fakeConnection.Send(command);
|
||
|
Assert.Throws<NullReferenceException>(() => _fakeConnection.Send(command));
|
||
|
}
|
||
|
}
|