Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 33d180cefa961fb4651a6bb5032288af34ca73cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
 * Copyright (c) 2017 Red Hat, Inc.
 * Distributed under license by Red Hat, Inc. All rights reserved.
 * This program is 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
 *
 * Contributor:
 *     Red Hat, Inc. - initial API and implementation
 ******************************************************************************/

package org.eclipse.linuxtools.docker.integration.tests.ui;

import org.eclipse.linuxtools.docker.reddeer.ui.DockerContainersTab;
import org.eclipse.linuxtools.docker.reddeer.ui.DockerExplorerView;
import org.eclipse.linuxtools.docker.reddeer.ui.DockerImagesTab;
import org.junit.Test;

/**
 * 
 * @author jkopriva@redhat.com
 *
 */
public class PerspectiveTest {

	@Test
	public void testDockerExplorerViewPresent() {
		new DockerExplorerView().open();
	}

	@Test
	public void testDockerImagesTabPresent() {
		DockerImagesTab tab = new DockerImagesTab();
		tab.open();
	}

	@Test
	public void testDockerContainersTabPresent() {
		DockerContainersTab tab = new DockerContainersTab();
		tab.open();
	}

}

Back to the top