Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 37272797d48f0aa0c871db08b9e33fd76ac06539 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*******************************************************************************
 * Copyright (c) 2011 Anton Gorenkov 
 * 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:
 *     Anton Gorenkov - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.testsrunner.launcher;

/**
 * Describes the Tests Runner input provider plug-in, its requirements and
 * features provided.
 * 
 * @noextend This interface is not intended to be extended by clients.
 * @noimplement This interface is not intended to be implemented by clients.
 */
public interface ITestsRunnerProviderInfo {
	
	/**
	 * Returns the user readable name of the Tests Runner provider plug-in.
	 *
	 * @return readable name
	 */
	public String getName();

	/**
	 * Returns the unique ID of the Tests Runner provider plug-in.
	 *
	 * @return unique id
	 */
	public String getId();

	/**
	 * Returns the short description of the Tests Runner provider plug-in.
	 *
	 * @return short description
	 */
	public String getDescription();

	/**
	 * Returns whether Tests Runner provider plug-in allows to add a filter for
	 * running a few custom test cases or test suites at a time (e.g. Google
	 * Test and Qt Test allow it, but Boost.Test doesn't).
	 * 
	 * @return whether multiple filter is supported
	 */
	public boolean isAllowedMultipleTestFilter();
	
	/**
	 * Returns whether Tests Runner provider plug-in requires to handle standard
	 * output stream of the testing process.
	 * 
	 * @return whether output stream is required
	 */
	public boolean isOutputStreamRequired();
	
	/**
	 * Returns whether Tests Runner provider plug-in requires to handle standard
	 * error stream of the testing process.
	 * 
	 * @return whether error stream is required
	 */
	public boolean isErrorStreamRequired();
	
}

Back to the top