Package com.opera.core.systems.testing.drivers

Examples of com.opera.core.systems.testing.drivers.TestOperaDesktopDriverSupplier


public abstract class OperaDesktopDriverTestCase extends AbstractTestCase {

  protected TestOperaDesktopDriver driver;

  public OperaDesktopDriverTestCase() {
    super(new TestOperaDesktopDriverSupplier());
  }
View Full Code Here


    assertTrue(supplier.supplies(TestOperaMobileDriver.class));
  }

  @Test
  public void testOperaDesktopDriverSupplierSuppliesTestOperaDesktopDriver() {
    supplier = new TestOperaDesktopDriverSupplier();
    assertTrue(supplier.supplies(TestOperaDesktopDriver.class));
  }
View Full Code Here

    assertTrue(new TestOperaMobileDriverSupplier().getSettings().autostart());
  }

  @Test
  public void testOperaDesktopDriverSupplierAutostarts() {
    assertTrue(new TestOperaDesktopDriverSupplier().getSettings().autostart());
  }
View Full Code Here

  }

  @Test
  public void testOperaDesktopDriverSupplierProduct() {
    assertEquals(OperaProduct.DESKTOP,
                 new TestOperaDesktopDriverSupplier().getSettings().getProduct());
  }
View Full Code Here

TOP

Related Classes of com.opera.core.systems.testing.drivers.TestOperaDesktopDriverSupplier

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.