KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > junit > model > ITestElementContainer


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.junit.model;
12
13 /**
14  * Common protocol for test elements containers.
15  * This set consists of {@link ITestSuiteElement} and {@link ITestRunSession}
16  *
17  * <p>
18  * This interface is not intended to be implemented by clients.
19  * </p>
20  *
21  * @since 3.3
22  */

23 public interface ITestElementContainer extends ITestElement {
24     
25     /**
26      * Returns all tests (and test suites) contained in the suite.
27      *
28      * @return returns all tests (and test suites) contained in the suite.
29      */

30     public ITestElement[] getChildren();
31     
32 }
33
Popular Tags