mirror of
https://github.com/fbarresi/Sharp7.git
synced 2026-02-04 08:42:51 +00:00
24 lines
363 B
C#
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();
|
|
}
|
|
|
|
}
|
|
}
|