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:
parent
2d15781430
commit
33fc7cd057
7 changed files with 7 additions and 7 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -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() );
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -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() );
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue