Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bcb60a1edd32e40c89d595349c25b75625a5e0aa (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
/*******************************************************************************
 * Copyright (c) 2011, 2012 Anton Gorenkov 
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Anton Gorenkov - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.testsrunner.model;

/**
 * Describes the location of the test object.
 * 
 * @noextend This interface is not intended to be extended by clients.
 * @noimplement This interface is not intended to be implemented by clients.
 */
public interface ITestLocation {

	/**
	 * Returns the file name in which testing object is located.
	 * 
	 * @return file name
	 */
	public String getFile();

	/**
	 * Returns the line number on which testing object is located.
	 * 
	 * @return line number
	 */
	public int getLine();

}

Back to the top