Examples of ExistenceAssertion


Examples of ch.entwine.weblounge.common.impl.testing.IntegrationTestCase.ExistenceAssertion

   */
  @Test
  public void testAssertExists() {
    List<IntegrationTestCaseAssertion> assertions = testCases.get(0).getAssertions();
    assertTrue(assertions.get(1) instanceof ExistenceAssertion);
    ExistenceAssertion assertion = (ExistenceAssertion) assertions.get(1);
    assertTrue(assertion.isPositive());
    assertEquals("//div[@id='main']/h1", assertion.getXPath());
  }
View Full Code Here

Examples of ch.entwine.weblounge.common.impl.testing.IntegrationTestCase.ExistenceAssertion

   */
  @Test
  public void testAssertNotExists() {
    List<IntegrationTestCaseAssertion> assertions = testCases.get(0).getAssertions();
    assertTrue(assertions.get(2) instanceof ExistenceAssertion);
    ExistenceAssertion assertion = (ExistenceAssertion) assertions.get(2);
    assertFalse(assertion.isPositive());
    assertEquals("//div[@id='main']/h2", assertion.getXPath());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.