Ejemplo n.º 1
0
        public void All_ViewAllSegmentInUri_ReturnsTrue()
        {
            var uri = new Uri(new Uri("http://test.test"), ViewAllPath.SEGMENT);

            Assert.True(ViewAllPath.All(uri));
        }
Ejemplo n.º 2
0
 public void All_NullUri_ReturnsFalse()
 {
     Assert.False(ViewAllPath.All(null));
 }
Ejemplo n.º 3
0
 public void All_NoViewAllSegmentInUri_ReturnsTrue()
 {
     Assert.False(ViewAllPath.All(new Uri("http://test.test")));
 }