namespace ServicePoint.Tests; public class ConnectionTests { [Fact] public void InvalidHostnameThrows() { Assert.Throws(() => new Connection("")); Assert.Throws(() => new Connection("-%6$ยง")); } }