protected override T CreateUnderlyService()
 {
     return(ChannelFactory.CreateHttpChannel <T>(_serviceUrl));
 }
        public void Create_GivenIRemoteService_ReturnsHttpRelayLink()
        {
            var relayLink = _channelFactory.CreateHttpChannel(A.Fake <IRemoteService>());

            Assert.That(relayLink, Is.TypeOf <HttpChannel>());
        }