1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-07 16:26:11 +02:00

fix misunderstanding about junit

This commit is contained in:
Andrew Ferguson 2007-02-05 13:18:31 +00:00
parent 0c0eefcf2b
commit 7829540568

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2006 Symbian Software Systems and others. * Copyright (c) 2007 Symbian Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -10,6 +10,8 @@
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.internal.pdom.tests; package org.eclipse.cdt.internal.pdom.tests;
import junit.framework.Test;
/** /**
* Tests which are too expensive to run as part of normal testing, but * Tests which are too expensive to run as part of normal testing, but
* should be run after B-tree related development. * should be run after B-tree related development.
@ -18,11 +20,12 @@ package org.eclipse.cdt.internal.pdom.tests;
* invariants after each B-tree operation, and so are especially * invariants after each B-tree operation, and so are especially
* expensive and cpu hungry. * expensive and cpu hungry.
*/ */
/*
* JUnit only invokes methods declared in the class itself (not super-classes)
*/
public class BTreeExpensiveTests extends BTreeTests { public class BTreeExpensiveTests extends BTreeTests {
public static Test suite() {
return suite(BTreeExpensiveTests.class);
}
public void testBySortedSetMirror() throws Exception { public void testBySortedSetMirror() throws Exception {
sortedMirrorTest(100); sortedMirrorTest(100);
} }