Examples of details()


Examples of org.seleniuminspector.openfaces.ConfirmationInspector.details()

    public void testSetConfirmationTextsFunction() {
        testAppFunctionalPage("/components/confirmation/confirmationTestInvokers.jsf");
        element("form1:linkInvokerID2").click();
        ConfirmationInspector confirmation = confirmation("form1:setConfirmationTexts");
        confirmation.message().assertText("header custom text");
        confirmation.details().assertText("details custom text");
        confirmation.okButton().assertValue("accept");
        confirmation.cancelButton().assertValue("decline");
        confirmation.okButton().click();
    }
View Full Code Here

Examples of org.seleniuminspector.openfaces.ConfirmationInspector.details()

        ConfirmationInspector confirmation = confirmation("form1:styled");
        confirmation.buttonArea().assertStyle("background: blue");
        confirmation.assertStyle("border: 3px solid black");
        confirmation.cancelButton().assertStyle("border: 1px dashed black");
        confirmation.caption().assertStyle("border: 1px dashed white");
        confirmation.details().assertStyle("color: red");
        confirmation.iconArea().assertStyle("border: 1px solid orange");
        confirmation.message().assertStyle("color: blue");
        confirmation.content().assertStyle("background: beige");
        confirmation.modalLayer().assertStyle("background: gray");
        confirmation.okButton().assertStyle("border: 1px dashed pink");
View Full Code Here

Examples of org.seleniuminspector.openfaces.ConfirmationInspector.details()

        confirmation.okButton().mouseOut();
        confirmation.cancelButton().mouseOver();
        confirmation.cancelButton().mouseMove();

        confirmation.cancelButton().assertStyle("border: 3px dashed black");
        confirmation.details().assertStyle("font-weight: bold");
        confirmation.iconArea().assertStyle("border: 3px solid red");
        confirmation.message().assertStyle("color: green");
        confirmation.content().assertStyle("background: orange");
    }
View Full Code Here

Examples of org.sonar.core.activity.Activity.details()

    assertThat(index.findAll().getTotal()).isEqualTo(1);

    Activity activity = Iterables.getFirst(index.findAll().getHits(), null);
    assertThat(activity).isNotNull();
    assertThat(activity.details().get(testKey)).isEqualTo(testValue);
  }

  @Test
  public void current_time_zone() {
    service.write(dbSession, Activity.Type.QPROFILE, "now");
View Full Code Here

Examples of org.sonar.core.activity.Activity.details()

    // 0. AssertBase case
    assertThat(index.findAll().getHits()).hasSize(1);

    Activity activity = Iterables.getFirst(index.findAll().getHits(), null);
    assertThat(activity).isNotNull();
    assertThat(activity.details().get("key")).isEqualTo(key.toString());
  }
}
View Full Code Here

Examples of org.sonar.core.activity.Activity.details()

    // 0. AssertBase case
    assertThat(index.findAll().getHits()).hasSize(1);

    Activity activity = Iterables.getFirst(index.findAll().getHits(), null);
    assertThat(activity).isNotNull();
    Map<String, String> details = activity.details();
    assertThat(details.get("id")).isEqualTo(String.valueOf(report.getId()));
    assertThat(details.get("projectKey")).isEqualTo(project.key());
    assertThat(details.get("projectName")).isEqualTo(project.name());
    assertThat(details.get("projectUuid")).isEqualTo(project.uuid());
    assertThat(details.get("status")).isEqualTo("FAILED");
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.