/** * 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 2012-2015 the original author or authors. */ package org.assertj.swing.driver; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.swing.core.TestRobots.newRobotMock; import static org.assertj.swing.util.Platform.controlOrCommandKey; import static org.mockito.Matchers.anyObject; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verifyZeroInteractions; import org.assertj.swing.core.Robot; import org.junit.Before; import org.junit.Test; /** * Tests for {@link MultipleSelectionTemplate#multiSelect()}. * * @author Yvonne Wang */ public class MultipleSelectionTemplate_multiSelect_Test { private Robot robot; private MultipleSelection template; @Before public void setUp() { robot = newRobotMock(); } @Test public void should_Select_Once_If_Element_Count_Is_One() { template = new MultipleSelection(robot, 1); template.multiSelect(); assertThat(template.timesSelected).isEqualTo(1); verifyZeroInteractions(robot); } @Test public void should_Select_Multiple_Items() { template = new MultipleSelection(robot, 2); int key = controlOrCommandKey(); template.multiSelect(); assertThat(template.timesSelected).isEqualTo(2); verify(robot).pressKeyWhileRunning(eq(key), anyObject()); } private static class MultipleSelection extends MultipleSelectionTemplate { private final int elementCount; int timesSelected; MultipleSelection(Robot robot, int elementCount) { super(robot); this.elementCount = elementCount; } @Override int elementCount() { return elementCount; } @Override void selectElement(int index) { timesSelected++; } @Override void unselectElement(int index) { throw new AssertionError("unexpected method call"); } } }