Beispiel #1
0
 public void BrowserWindowTest_ForwardShouldNotThrow()
 {
     BrowserWindow
     .Invoking(x => x.Forward())
     .ShouldNotThrow();
 }
Beispiel #2
0
 public void BrowserWindowTest_BackShouldNotThrow()
 {
     BrowserWindow
     .Invoking(x => x.Back())
     .ShouldNotThrow();
 }
Beispiel #3
0
 public void BrowserWindowTest_RefreshShouldNotThrow()
 {
     BrowserWindow
     .Invoking(x => x.Refresh())
     .ShouldNotThrow();
 }