public void AnnounceServer_ThrowsAnException_WhenServerIdIsNull()
        {
            var exception = Assert.Throws <ArgumentNullException>(
                () => _connection.AnnounceServer(null, new ServerContext()));

            Assert.Equal("serverId", exception.ParamName);
        }