mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 10:20:12 +01:00
13 lines
208 B
C#
13 lines
208 B
C#
using ServicePoint;
|
|
|
|
namespace ServicePoint.Tests;
|
|
|
|
public class UnitTest1
|
|
{
|
|
[Fact]
|
|
public void Test1()
|
|
{
|
|
Assert.Throws<ConnectionException.IoException>(() => new Connection(""));
|
|
}
|
|
}
|