/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.comunnication.progressor; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import static org.mockito.Mockito.verify; /** @author Valeriy Svydenko */ @RunWith(MockitoJUnitRunner.class) public class ResolveDependencyPresenterTest { private static final String TEXT = "to be or not to be"; @Mock private ResolveDependencyView view; @InjectMocks private ResolveDependencyPresenter presenter; @Test public void viewShouldBeShowed() throws Exception { presenter.show(); verify(view).show(); } @Test public void progressLabelShouldBeUpdated() throws Exception { presenter.setProgressLabel(TEXT); verify(view).setOperationLabel(TEXT); } @Test public void progressorShouldBeUpdated() throws Exception { presenter.updateProgressBar(5); verify(view).updateProgressBar(5); } @Test public void viewShouldBeHidden() throws Exception { presenter.hide(); verify(view).hide(); } }