Files
Sharp7/Sharp7.Tests/ConnectionTest.cs
2019-10-30 13:27:00 +01:00

24 lines
363 B
C#

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();
}
}
}