public void DoesntSupportRelativeResources()
        {
            StringResource r = new StringResource(string.Empty);

            Assert.Throws <NotSupportedException>(() => r.CreateRelative("foo"));
        }
        public void DoesntSupportRelativeResources()
        {
            StringResource r = new StringResource(string.Empty);

            r.CreateRelative("foo");
        }
예제 #3
0
 public void DoesntSupportRelativeResources()
 {
     StringResource r = new StringResource(string.Empty);
     r.CreateRelative("foo");
 }
 public void DoesntSupportRelativeResources()
 {
     StringResource r = new StringResource(string.Empty);
     Assert.Throws<NotSupportedException>(() => r.CreateRelative("foo"));
 }