예제 #1
0
        public void retreived_endpoint_should_match_added_endpoint()
        {
            IExampleImplementation example = Locator.Instance.GetEndPoint <IExampleImplementation>();

            Assert.IsInstanceOf <IExampleImplementation>(example);
        }
예제 #2
0
        public void retreived_endpoint_should_not_be_null()
        {
            IExampleImplementation example = Locator.Instance.GetEndPoint <IExampleImplementation>();

            Assert.NotNull(example);
        }