Package org.fest.swing.fixture

Source Code of org.fest.swing.fixture.JScrollPaneFixture_withMocks_Test

/*
* Created on Dec 25, 2007
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright @2007-2013 the original author or authors.
*/
package org.fest.swing.fixture;

import static org.fest.assertions.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import javax.swing.JScrollBar;
import javax.swing.JScrollPane;

import org.fest.swing.core.Robot;
import org.fest.swing.driver.JScrollPaneDriver;
import org.junit.Before;
import org.junit.Test;

/**
* Tests for {@link JScrollPaneFixture}.
*
* @author Yvonne Wang
* @author Alex Ruiz
*/
public class JScrollPaneFixture_withMocks_Test {
  private JScrollPaneDriver driver;
  private JScrollPane target;

  private JScrollPaneFixture fixture;

  @Before
  public void setUp() {
    fixture = new JScrollPaneFixture(mock(Robot.class), mock(JScrollPane.class));
    fixture.replaceDriverWith(mock(JScrollPaneDriver.class));
    driver = fixture.driver();
    target = fixture.target();
  }

  @Test
  public void should_return_horizontal_JScrollBar_using_driver() {
    JScrollBar scrollBar = mock(JScrollBar.class);
    when(driver.horizontalScrollBarIn(target)).thenReturn(scrollBar);
    JScrollBarFixture scrollBarFixture = fixture.horizontalScrollBar();
    assertThat(scrollBarFixture.target()).isSameAs(scrollBar);
    verify(driver).horizontalScrollBarIn(target);
  }

  @Test
  public void should_return_vertical_JScrollBar_using_driver() {
    JScrollBar scrollBar = mock(JScrollBar.class);
    when(driver.verticalScrollBarIn(target)).thenReturn(scrollBar);
    JScrollBarFixture scrollBarFixture = fixture.verticalScrollBar();
    assertThat(scrollBarFixture.target()).isSameAs(scrollBar);
    verify(driver).verticalScrollBarIn(target);
  }
}
TOP

Related Classes of org.fest.swing.fixture.JScrollPaneFixture_withMocks_Test

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.