mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 10:25:32 +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() {
|
public IncludeBrowserTestSuite() {
|
||||||
super("Tests in package org.eclipse.cdt.ui.tests.inlucdebrowser");
|
super(IncludeBrowserTestSuite.class.getName());
|
||||||
addTest(BasicIncludeBrowserTest.suite());
|
addTest(BasicIncludeBrowserTest.suite());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ public class TextTestSuite extends TestSuite {
|
||||||
}
|
}
|
||||||
|
|
||||||
public TextTestSuite() {
|
public TextTestSuite() {
|
||||||
super("Tests in package org.eclipse.cdt.ui.tests.text");
|
super(TextTestSuite.class.getName());
|
||||||
|
|
||||||
// partitioning tests
|
// partitioning tests
|
||||||
addTest(PartitionTokenScannerTest.suite());
|
addTest(PartitionTokenScannerTest.suite());
|
||||||
|
|
|
@ -20,7 +20,7 @@ public class ContentAssistTestSuite extends TestSuite {
|
||||||
}
|
}
|
||||||
|
|
||||||
public ContentAssistTestSuite() {
|
public ContentAssistTestSuite() {
|
||||||
super("Tests in package org.eclipse.cdt.ui.tests.text.contentassist");
|
super(ContentAssistTestSuite.class.getName());
|
||||||
|
|
||||||
addTest( ContentAssistTests.suite() );
|
addTest( ContentAssistTests.suite() );
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ public class ContentAssist2TestSuite extends TestSuite {
|
||||||
}
|
}
|
||||||
|
|
||||||
public ContentAssist2TestSuite() {
|
public ContentAssist2TestSuite() {
|
||||||
super("Tests in package org.eclipse.cdt.ui.tests.text.contentassist2");
|
super(ContentAssist2TestSuite.class.getName());
|
||||||
|
|
||||||
addTest(CompletionTest_AnonymousTypes.suite());
|
addTest(CompletionTest_AnonymousTypes.suite());
|
||||||
addTest(CompletionTest_ArgumentType_Prefix.suite());
|
addTest(CompletionTest_ArgumentType_Prefix.suite());
|
||||||
|
|
|
@ -20,7 +20,7 @@ public class SelectionTestSuite extends TestSuite {
|
||||||
}
|
}
|
||||||
|
|
||||||
public SelectionTestSuite() {
|
public SelectionTestSuite() {
|
||||||
super("Tests in package org.eclipse.cdt.ui.tests.text.selection");
|
super(SelectionTestSuite.class.getName());
|
||||||
|
|
||||||
// selection tests
|
// selection tests
|
||||||
addTest( ResolveBindingTests.suite() );
|
addTest( ResolveBindingTests.suite() );
|
||||||
|
|
|
@ -20,7 +20,7 @@ public class TypeHierarchyTestSuite extends TestSuite {
|
||||||
}
|
}
|
||||||
|
|
||||||
public TypeHierarchyTestSuite() {
|
public TypeHierarchyTestSuite() {
|
||||||
super("Tests in package org.eclipse.cdt.ui.tests.typehierarchy");
|
super(TypeHierarchyTestSuite.class.getName());
|
||||||
addTest(CTypeHierarchyTest.suite());
|
addTest(CTypeHierarchyTest.suite());
|
||||||
addTest(CppTypeHierarchyTest.suite());
|
addTest(CppTypeHierarchyTest.suite());
|
||||||
addTest(QuickTypeHierarchyTest.suite());
|
addTest(QuickTypeHierarchyTest.suite());
|
||||||
|
|
|
@ -20,7 +20,7 @@ public class ViewSupportTestSuite extends TestSuite {
|
||||||
}
|
}
|
||||||
|
|
||||||
public ViewSupportTestSuite() {
|
public ViewSupportTestSuite() {
|
||||||
super("Tests in package org.eclipse.cdt.ui.tests.viewsupport");
|
super(ViewSupportTestSuite.class.getName());
|
||||||
addTestSuite(AsyncViewerTest.class);
|
addTestSuite(AsyncViewerTest.class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue