blob: 58ab27f7ac9a8dafe77b5b0385990f26ec02864a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.jdi.tests;
import junit.framework.TestResult;
import junit.framework.TestSuite;
/**
* A JDI test suite runs all tests defined in a JDI test case class.
* It runs the setUp method once before running the tests and the
* tearDown method once after.
*/
public class JDITestSuite extends TestSuite {
private AbstractJDITest fTest;
/**
* Creates a new test suite for the given JDI test.
*/
public JDITestSuite(AbstractJDITest test) {
super();
fTest = test;
}
/**
* Runs the tests and collects their result in a TestResult.
*/
public void run(TestResult result) {
fTest.setUp();
super.run(result);
fTest.tearDown();
}
}