Search in sources :

Example 41 with Anchor

use of com.google.gwt.user.client.ui.Anchor in project gwt-test-utils by gwt-test-utils.

the class WidgetAssertTest method textEqualsAssertionErrorMessage.

@Test
public void textEqualsAssertionErrorMessage() {
    // Given
    Anchor a = new Anchor();
    a.setText("Ben Linus");
    // When
    try {
        GwtAssertions.assertThat(a).textEquals("John Locke");
        fail("AssertionError should be thrown");
    } catch (AssertionError e) {
        assertThat(e.getMessage()).isEqualTo("[Anchor's text] expected:<\"[John Locke]\"> but was:<\"[Ben Linus]\">");
    }
}
Also used : Anchor(com.google.gwt.user.client.ui.Anchor) GwtTestTest(com.googlecode.gwt.test.GwtTestTest) Test(org.junit.Test)

Example 42 with Anchor

use of com.google.gwt.user.client.ui.Anchor in project gwt-test-utils by gwt-test-utils.

the class WidgetAssertTest method styleNameEqualsWithAsAndCustomAssertionErrorMessage.

@Test
public void styleNameEqualsWithAsAndCustomAssertionErrorMessage() {
    // Given
    Anchor a = new Anchor();
    a.setStyleName("first");
    a.addStyleName("second");
    // When
    try {
        assertThat(a).as("my anchor").overridingErrorMessage("custom error message").styleNameEquals("not-my-style");
        fail("AssertionError should be thrown");
    } catch (AssertionError e) {
        assertThat(e.getMessage()).isEqualTo("[my anchor styleName] custom error message");
    }
}
Also used : Anchor(com.google.gwt.user.client.ui.Anchor) GwtTestTest(com.googlecode.gwt.test.GwtTestTest) Test(org.junit.Test)

Example 43 with Anchor

use of com.google.gwt.user.client.ui.Anchor in project gwt-test-utils by gwt-test-utils.

the class StackPanelTest method click.

@Test
public void click() {
    // Given
    index = -1;
    StackPanel panel = new StackPanel() {

        @Override
        public void showStack(int index) {
            StackPanelTest.this.index = index;
        }

        ;
    };
    panel.add(new Anchor());
    panel.add(new Anchor());
    // When
    Browser.click(panel, 1);
    // Then
    assertThat(index).isEqualTo(1);
}
Also used : Anchor(com.google.gwt.user.client.ui.Anchor) StackPanel(com.google.gwt.user.client.ui.StackPanel) Test(org.junit.Test)

Example 44 with Anchor

use of com.google.gwt.user.client.ui.Anchor in project gwt-test-utils by gwt-test-utils.

the class WidgetAssertTest method isVisibleWithAsAssertionErrorMessage.

@Test
public void isVisibleWithAsAssertionErrorMessage() {
    // Given
    Anchor a = new Anchor();
    a.setVisible(false);
    // When
    try {
        GwtAssertions.assertThat(a).as("my anchor").isVisible();
        fail("AssertionError should be thrown");
    } catch (AssertionError e) {
        assertThat(e.getMessage()).isEqualTo("[my anchor] should be visible");
    }
}
Also used : Anchor(com.google.gwt.user.client.ui.Anchor) GwtTestTest(com.googlecode.gwt.test.GwtTestTest) Test(org.junit.Test)

Example 45 with Anchor

use of com.google.gwt.user.client.ui.Anchor in project gwt-test-utils by gwt-test-utils.

the class WidgetAssertTest method stylePrimaryNameEqualsWithCustomAssertionErrorMessage.

@Test
public void stylePrimaryNameEqualsWithCustomAssertionErrorMessage() {
    // Given
    Anchor a = new Anchor();
    a.setStylePrimaryName("primary");
    a.addStyleName("second");
    // When
    try {
        assertThat(a).overridingErrorMessage("my custom error").stylePrimaryNameEquals("not-my-style");
        fail("AssertionError should be thrown");
    } catch (AssertionError e) {
        assertThat(e.getMessage()).isEqualTo("[Anchor's stylePrimaryName] my custom error");
    }
}
Also used : Anchor(com.google.gwt.user.client.ui.Anchor) GwtTestTest(com.googlecode.gwt.test.GwtTestTest) Test(org.junit.Test)

Aggregations

Anchor (com.google.gwt.user.client.ui.Anchor)80 Test (org.junit.Test)59 GwtTestTest (com.googlecode.gwt.test.GwtTestTest)47 ClickEvent (com.google.gwt.event.dom.client.ClickEvent)6 ClickHandler (com.google.gwt.event.dom.client.ClickHandler)6 HorizontalPanel (com.google.gwt.user.client.ui.HorizontalPanel)4 Image (com.google.gwt.user.client.ui.Image)4 InlineLabel (com.google.gwt.user.client.ui.InlineLabel)4 ImageResourceRenderer (com.google.gwt.user.client.ui.ImageResourceRenderer)3 RestApi (com.google.gerrit.client.rpc.RestApi)2 FlexCellFormatter (com.google.gwt.user.client.ui.FlexTable.FlexCellFormatter)2 Grid (com.google.gwt.user.client.ui.Grid)2 CellFormatter (com.google.gwt.user.client.ui.HTMLTable.CellFormatter)2 InlineHTML (com.google.gwt.user.client.ui.InlineHTML)2 VerticalPanel (com.google.gwt.user.client.ui.VerticalPanel)2 AvatarImage (com.google.gerrit.client.AvatarImage)1 DiffObject (com.google.gerrit.client.DiffObject)1 GerritUiExtensionPoint (com.google.gerrit.client.GerritUiExtensionPoint)1 BlameInfo (com.google.gerrit.client.blame.BlameInfo)1 ProjectInfo (com.google.gerrit.client.projects.ProjectInfo)1