Bug 71501

Summary: [JUnit] add TestDecorator filter for test hierarchy of JUnit View
Product: [Eclipse Project] JDT Reporter: Christof Marti <christof_marti>
Component: UIAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3 CC: daniel_megert, markus.kell.r
Version: 3.2   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Christof Marti CLA 2004-08-05 14:13:00 EDT
In some situations it makes sense to show the TestDecorators in the test
hierarchy. MK and I discussed to add a 'filter test decorators' option to the
JUnit View's view menu, which would be enabled by default.

An example where this is usefull is with performance tests which should be run
with two different TestSetups:

public static Test suite() {
	return new MyDemoTestSuite();
}

public MyDemoTestSuite() {
	addTest(new MyTestSetup1(MyPerformanceSuite.suite()));
	addTest(new MyTestSetup2(MyPerformanceSuite.suite()));
}
Comment 1 Markus Keller CLA 2004-11-04 11:45:02 EST
TestDecorators are now always shown in the tree. This makes it hard to browse
large test suites such as jdt.ui's AllTests and AutomatedSuite, where each test
class has always the same TestSetup.
Comment 2 Erich Gamma CLA 2006-05-24 05:48:31 EDT
Moving back to the JDT/UI inbox
Comment 3 Markus Keller CLA 2007-06-13 06:28:01 EDT
This should be easier now that the Eclipse JUnit runner has an explicit model.