Esempio 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}");
        }
Esempio n. 2
0
 public void ShouldRedirectTo(string path)
 {
     Nav.Expect(() => Path.StartsWith(path), $"Should have navigated to {path}");
 }