mirror of
https://github.com/fbarresi/Sharp7.git
synced 2026-02-04 08:42:51 +00:00
added tests for sharp7 client
This commit is contained in:
23
Sharp7.Tests/ConnectionTest.cs
Normal file
23
Sharp7.Tests/ConnectionTest.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using Shouldly;
|
||||
using Xunit;
|
||||
|
||||
namespace Sharp7.Tests
|
||||
{
|
||||
public class ConnectionTest : ServerClientTestBase
|
||||
{
|
||||
|
||||
[Fact]
|
||||
public void ClientIsNotNull()
|
||||
{
|
||||
Client.ShouldNotBeNull();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void ServerIsNotNull()
|
||||
{
|
||||
Server.ShouldNotBeNull();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user