blob: 9e924c8c653fd4e09402cbc705557f9dd4c0b713 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.uberfire.ext.widgets.common.client.dropdown;
import com.google.gwtmockito.GwtMockitoTestRunner;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify;
@RunWith(GwtMockitoTestRunner.class)
public class InlineEntryCreationLiveSearchServiceTest extends AbstractEntryCreationLiveSearchServiceTest<InlineCreationEditor> {
@Test
public void testInlineEditorCancelAction() {
startTest();
onCancelCommand.execute();
verify(dropDown, never()).addNewItem(any());
verify(view).restoreFooter();
}
@Override
protected void startTest() {
super.startTest();
verify(view).showNewItemEditor(editor);
}
@Override
protected Class<InlineCreationEditor> getEditorType() {
return InlineCreationEditor.class;
}
}