Exemplo n.º 1
0
        public void ShouldRedirectTo <T>() where T : class, new()
        {
            var path = _urlLookup.For <T>();

            Nav.Expect(() => Path.StartsWith(path), $"Should have navigated to {path}");
        }
Exemplo n.º 2
0
 public void ShouldRedirectTo(string path)
 {
     Nav.Expect(() => Path.StartsWith(path), $"Should have navigated to {path}");
 }