Package org.fest.swing.driver

Source Code of org.fest.swing.driver.JTreeDriver_cellReader_Test

/*
* Created on Jul 16, 2009
*
* 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 @2009-2013 the original author or authors.
*/
package org.fest.swing.driver;

import static org.fest.assertions.Assertions.assertThat;
import static org.fest.swing.core.TestRobots.singletonRobotMock;
import static org.mockito.Mockito.mock;

import org.fest.swing.cell.JTreeCellReader;
import org.junit.BeforeClass;
import org.junit.Test;

/**
* Tests for {@link JTreeDriver#replaceCellReader(JTreeCellReader)}.
*
* @author Alex Ruiz
*/
public class JTreeDriver_cellReader_Test {
  private static JTreeDriver driver;

  @BeforeClass
  public static void setUpOnce() {
    driver = new JTreeDriver(singletonRobotMock());
  }

  @Test(expected = NullPointerException.class)
  public void should_throw_error_if_cellReader_is_null() {
    driver.replaceCellReader(null);
  }

  @Test
  public void should_set_cellReader() {
    JTreeCellReader cellReader = mock(JTreeCellReader.class);
    driver.replaceCellReader(cellReader);
    assertThat(driver.cellReader()).isSameAs(cellReader);
  }
}
TOP

Related Classes of org.fest.swing.driver.JTreeDriver_cellReader_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.