Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 17043f3bbd5ab41a45338ca602d7d20ef334fb15 (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
44
45
46
47
48
49
50
/*****************************************************************************
 * Copyright (c) 2010, 2016 CEA LIST, Christian W. Damus, and others.
 *    
 * 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:
 *  Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
 *  Christian W. Damus - bugs 451230, 485220
 *  
 *****************************************************************************/
package org.eclipse.papyrus.junit.framework.runner;


/**
 * Interface for all suite classes.
 */
public interface ITestSuiteClass {

	/**
	 * Returns the main test suite class for this entry
	 * 
	 * @return the main test suite class for this entry
	 */
	public Class<?> getMainTestSuiteClass();

	/**
	 * Queries whether the test suite runs in "headless mode" (without the Eclipse Workbench).
	 * 
	 * @return whether I am an headless test suite
	 * @since 1.2
	 */
	default boolean isHeadless() {
		Class<?> main = getMainTestSuiteClass();
		return (main != null) && main.isAnnotationPresent(Headless.class);
	}

	/**
	 * Queries whether the test suite runs in "UI mode" (in an Eclipse Workbench).
	 * 
	 * @return whether I am an UI test suite
	 * @since 1.2
	 */
	default boolean isUI() {
		Class<?> main = getMainTestSuiteClass();
		return (main != null) && !main.isAnnotationPresent(Headless.class);
	}
}

Back to the top