예제 #1
0
        public void FirefoxTest()
        {
            FirefoxWindow firefoxWindow = null;

            try
            {
                firefoxWindow = Firefox.Launch("about:blank");
                Assert.That(firefoxWindow, Is.Not.Null);
            }
            finally
            {
                if (firefoxWindow != null)
                {
                    firefoxWindow.Dispose();
                }
            }
        }
예제 #2
0
 public void FirefoxTest()
 {
     firefoxWindow = Firefox.Launch("about:blank");
     Assert.NotEqual(null, firefoxWindow);
 }
예제 #3
0
 public void FirefoxTest()
 {
     firefoxWindow = Firefox.Launch("about:blank");
     Assert.AreNotEqual(null, firefoxWindow);
 }