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

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


public abstract class OperaMobileDriverTestCase extends AbstractTestCase {

  protected TestOperaMobileDriver driver;

  public OperaMobileDriverTestCase() {
    super(new TestOperaMobileDriverSupplier());
  }
View Full Code Here


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

  @Test
  public void testOperaMobileDriverSupplierSuppliesTestOperaMobileDriver() {
    supplier = new TestOperaMobileDriverSupplier();
    assertTrue(supplier.supplies(TestOperaMobileDriver.class));
  }
View Full Code Here

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

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

  }

  @Test
  public void testOperaMobileDriverSupplierProduct() {
    assertEquals(OperaProduct.MOBILE,
                 new TestOperaMobileDriverSupplier().getSettings().getProduct());
  }
View Full Code Here

TOP

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

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.