1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

Add testsuite for package 'viewsupport' to automated ui-tests.

This commit is contained in:
Markus Schorn 2006-08-31 08:46:27 +00:00
parent 814e8ae7b6
commit 937e249087

View file

@ -8,6 +8,7 @@
* Contributors:
* IBM - Initial API and implementation
* Anton Leherbauer (Wind River Systems)
* Markus Schorn (Wind River Systems)
*******************************************************************************/
package org.eclipse.cdt.ui.tests;
@ -66,6 +67,7 @@ import org.eclipse.cdt.ui.tests.text.selectiontests.CPPSelectionTestsNoIndexer;
import org.eclipse.cdt.ui.tests.text.selectiontests.CSelectionTestsCTagsIndexer;
import org.eclipse.cdt.ui.tests.text.selectiontests.CSelectionTestsDOMIndexer;
import org.eclipse.cdt.ui.tests.text.selectiontests.CSelectionTestsNoIndexer;
import org.eclipse.cdt.ui.tests.viewsupport.ViewSupportTestSuite;
/**
* Test all areas of the UI.
@ -151,6 +153,9 @@ public class AutomatedSuite extends TestSuite {
// highlighting tests
addTest(SemanticHighlightingTest.suite());
addTest(InactiveCodeHighlightingTest.suite());
// tests for package viewsupport
addTest(ViewSupportTestSuite.suite());
}
}