blob: c4b2346d20c83b56ba4fc7aa5949433846b99331 [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.ui.leaktest;
import junit.extensions.TestSetup;
import junit.framework.Test;
/**
*
*/
public class LeakTestSetup extends TestSetup {
private static LeakTestSetup fgCurrentSetup= null;
public LeakTestSetup(Test test) {
super(test);
if (fgCurrentSetup == null) {
fgCurrentSetup= this;
}
}
protected void setUp() throws Exception {
if (fgCurrentSetup != this) {
return;
}
// nothing done at the moment
}
protected void tearDown() throws Exception {
if (fgCurrentSetup != this) {
return;
}
// nothing done at the moment
}
}