blob: 9d55920af2a47eee4f5f2563bb043a9250a6d5af [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 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.jdt.core.tests.util;
import java.util.Enumeration;
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;
import junit.framework.TestResult;
import junit.framework.TestSuite;
public class CompilerTestSetup extends TestSuite {
long complianceLevel;
public CompilerTestSetup(long complianceLevel) {
super(CompilerOptions.versionFromJdkLevel(complianceLevel));
this.complianceLevel = complianceLevel;
}
protected void initTest(Object test) {
if (test instanceof AbstractCompilerTest) {
AbstractCompilerTest compilerTest = (AbstractCompilerTest)test;
compilerTest.initialize(this);
return;
}
if (test instanceof TestSuite) {
TestSuite testSuite = (TestSuite)test;
Enumeration evaluationTestClassTests = testSuite.tests();
while (evaluationTestClassTests.hasMoreElements()) {
initTest(evaluationTestClassTests.nextElement());
}
return;
}
if (test instanceof Enumeration) {
Enumeration evaluationTestClassTests = (Enumeration) test;
while (evaluationTestClassTests.hasMoreElements()) {
initTest(evaluationTestClassTests.nextElement());
}
return;
}
}
public void run(TestResult result) {
try {
setUp();
super.run(result);
} finally {
tearDown();
}
}
protected void setUp() {
// Init wrapped suite
initTest(tests());
}
protected void tearDown() {
}
}