servicepoint/crates/servicepoint_binding_uniffi/libraries/csharp/ServicePoint.Tests/UnitTest1.cs
2024-11-13 19:59:55 +01:00

13 lines
208 B
C#

using ServicePoint;
namespace ServicePoint.Tests;
public class UnitTest1
{
[Fact]
public void Test1()
{
Assert.Throws<ConnectionException.IoException>(() => new Connection(""));
}
}