servicepoint/crates/servicepoint_binding_uniffi/libraries/csharp/ServicePoint.Tests/UnitTest1.cs

13 lines
208 B
C#
Raw Normal View History

2024-11-02 23:15:54 +01:00
using ServicePoint;
namespace ServicePoint.Tests;
public class UnitTest1
{
[Fact]
public void Test1()
{
Assert.Throws<ConnectionException.IoException>(() => new Connection(""));
}
}