1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Bug 335643: Session-less tests should be exercised as part of every suite

This commit is contained in:
John Cortell 2011-01-28 02:27:09 +00:00
parent c1b4709436
commit 7dd91beaf6
2 changed files with 5 additions and 3 deletions

View file

@ -11,7 +11,8 @@
package org.eclipse.cdt.dsf.mi.service.command.commands;
import org.eclipse.cdt.dsf.mi.service.command.output.MIThreadTests;
import org.eclipse.cdt.tests.dsf.gdb.tests.OnceOnlySuite;
import org.eclipse.cdt.tests.dsf.gdb.framework.OnceOnlySuite;
import org.eclipse.cdt.tests.dsf.gdb.tests.LaunchUtilsTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@ -25,7 +26,8 @@ import org.junit.runners.Suite;
@Suite.SuiteClasses({
TestMIBreakInsertCommand.class,
TestMICommandConstructCommand.class,
MIThreadTests.class
MIThreadTests.class,
LaunchUtilsTest.class
/* Add your test class here */
})
public class Suite_Sessionless_Tests {

View file

@ -1,4 +1,4 @@
package org.eclipse.cdt.tests.dsf.gdb.tests;
package org.eclipse.cdt.tests.dsf.gdb.framework;
import java.util.HashSet;
import java.util.Set;