1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Allows to relaunch testsuites from the JUnit view.

This commit is contained in:
Markus Schorn 2007-06-13 11:21:02 +00:00
parent 2d15781430
commit 33fc7cd057
7 changed files with 7 additions and 7 deletions

View file

@ -20,7 +20,7 @@ public class IncludeBrowserTestSuite extends TestSuite {
}
public IncludeBrowserTestSuite() {
super("Tests in package org.eclipse.cdt.ui.tests.inlucdebrowser");
super(IncludeBrowserTestSuite.class.getName());
addTest(BasicIncludeBrowserTest.suite());
}
}

View file

@ -20,7 +20,7 @@ public class TextTestSuite extends TestSuite {
}
public TextTestSuite() {
super("Tests in package org.eclipse.cdt.ui.tests.text");
super(TextTestSuite.class.getName());
// partitioning tests
addTest(PartitionTokenScannerTest.suite());

View file

@ -20,7 +20,7 @@ public class ContentAssistTestSuite extends TestSuite {
}
public ContentAssistTestSuite() {
super("Tests in package org.eclipse.cdt.ui.tests.text.contentassist");
super(ContentAssistTestSuite.class.getName());
addTest( ContentAssistTests.suite() );

View file

@ -25,7 +25,7 @@ public class ContentAssist2TestSuite extends TestSuite {
}
public ContentAssist2TestSuite() {
super("Tests in package org.eclipse.cdt.ui.tests.text.contentassist2");
super(ContentAssist2TestSuite.class.getName());
addTest(CompletionTest_AnonymousTypes.suite());
addTest(CompletionTest_ArgumentType_Prefix.suite());

View file

@ -20,7 +20,7 @@ public class SelectionTestSuite extends TestSuite {
}
public SelectionTestSuite() {
super("Tests in package org.eclipse.cdt.ui.tests.text.selection");
super(SelectionTestSuite.class.getName());
// selection tests
addTest( ResolveBindingTests.suite() );

View file

@ -20,7 +20,7 @@ public class TypeHierarchyTestSuite extends TestSuite {
}
public TypeHierarchyTestSuite() {
super("Tests in package org.eclipse.cdt.ui.tests.typehierarchy");
super(TypeHierarchyTestSuite.class.getName());
addTest(CTypeHierarchyTest.suite());
addTest(CppTypeHierarchyTest.suite());
addTest(QuickTypeHierarchyTest.suite());

View file

@ -20,7 +20,7 @@ public class ViewSupportTestSuite extends TestSuite {
}
public ViewSupportTestSuite() {
super("Tests in package org.eclipse.cdt.ui.tests.viewsupport");
super(ViewSupportTestSuite.class.getName());
addTestSuite(AsyncViewerTest.class);
}
}