예제 #1
0
파일: Tests.cs 프로젝트: slang25/Hornbill
        public void Host_not_started_exception_thrown_when_getting_uri()
        {
            var fakeService = new FakeService();

            Assert.Throws <Exception>(delegate { var _ = fakeService.Uri; }, "Service not started");
            fakeService.Stop();
        }
예제 #2
0
 public void Host_not_started_exception_thrown_when_getting_uri()
 {
     var fakeService = new FakeService();
     Assert.Throws<Exception>(delegate { var _ = fakeService.Uri; }, "Service not started");
     fakeService.Stop();
 }