public void Test() { IBar sut = null; Assert.DoesNotThrow(() => sut = Api.On <TestClient>().New <IFoo>(new Uri("http://localhost"))); Assert.Throws <NotImplementedException>(() => sut.Ping()); }