|
59 | 59 | import org.eclipse.debug.tests.viewer.model.VirtualViewerSelectionTests; |
60 | 60 | import org.eclipse.debug.tests.viewer.model.VirtualViewerStateTests; |
61 | 61 | import org.eclipse.debug.tests.viewer.model.VirtualViewerUpdateTests; |
62 | | -import org.junit.runner.RunWith; |
63 | | -import org.junit.runners.Suite; |
| 62 | +import org.junit.platform.suite.api.SelectClasses; |
| 63 | +import org.junit.platform.suite.api.Suite; |
64 | 64 |
|
65 | 65 | /** |
66 | 66 | * Tests for integration and nightly builds. |
67 | 67 | * |
68 | 68 | * @since 3.6 |
69 | 69 | */ |
70 | | -@RunWith(Suite.class) |
71 | | -@Suite.SuiteClasses({ |
| 70 | +@Suite |
| 71 | +@SelectClasses({ |
72 | 72 | // Source lookup tests |
73 | | - SourceLookupFacilityTests.class, |
| 73 | + SourceLookupFacilityTests.class, // |
74 | 74 | // BP tests |
75 | | - BreakpointOrderingTests.class, |
76 | | - BreakpointTests.class, |
77 | | - SerialExecutorTest.class, |
| 75 | + BreakpointOrderingTests.class, // |
| 76 | + BreakpointTests.class, // |
| 77 | + SerialExecutorTest.class, // |
78 | 78 | // Note: jface viewer tests were moved out of nightly tests |
79 | 79 | // due to frequent problems on nightly build machines. |
80 | 80 | // (Bug 343308). |
81 | 81 |
|
82 | 82 | // Virtual viewer tests |
83 | | - VirtualViewerCheckTests.class, |
84 | | - VirtualViewerDeltaTests.class, |
85 | | - VirtualViewerContentTests.class, |
86 | | - VirtualViewerLazyModeTests.class, |
87 | | - VirtualViewerSelectionTests.class, |
88 | | - VirtualViewerStateTests.class, |
89 | | - VirtualViewerUpdateTests.class, |
90 | | - VirtualViewerFilterTests.class, |
| 83 | + VirtualViewerCheckTests.class, // |
| 84 | + VirtualViewerDeltaTests.class, // |
| 85 | + VirtualViewerContentTests.class, // |
| 86 | + VirtualViewerLazyModeTests.class, // |
| 87 | + VirtualViewerSelectionTests.class, // |
| 88 | + VirtualViewerStateTests.class, // |
| 89 | + VirtualViewerUpdateTests.class, // |
| 90 | + VirtualViewerFilterTests.class, // |
91 | 91 |
|
92 | 92 | // Viewer neutral tests |
93 | | - FilterTransformTests.class, |
94 | | - ChildrenUpdateTests.class, |
95 | | - PresentationContextTests.class, |
96 | | - VariableValueEditorManagerTests.class, |
| 93 | + FilterTransformTests.class, // |
| 94 | + ChildrenUpdateTests.class, // |
| 95 | + PresentationContextTests.class, // |
| 96 | + VariableValueEditorManagerTests.class, // |
97 | 97 |
|
98 | 98 | // Memory view |
99 | | - MemoryRenderingTests.class, |
100 | | - TableRenderingTests.class, |
| 99 | + MemoryRenderingTests.class, // |
| 100 | + TableRenderingTests.class, // |
101 | 101 |
|
102 | 102 | // Launch framework |
103 | | - LaunchConfigurationTests.class, |
104 | | - AcceleratorSubstitutionTests.class, |
105 | | - LaunchHistoryTests.class, |
106 | | - LaunchFavoriteTests.class, |
107 | | - LaunchManagerTests.class, |
108 | | - RefreshTabTests.class, |
109 | | - ArgumentParsingTests.class, |
110 | | - LaunchTests.class, |
| 103 | + LaunchConfigurationTests.class, // |
| 104 | + AcceleratorSubstitutionTests.class, // |
| 105 | + LaunchHistoryTests.class, // |
| 106 | + LaunchFavoriteTests.class, // |
| 107 | + LaunchManagerTests.class, // |
| 108 | + RefreshTabTests.class, // |
| 109 | + ArgumentParsingTests.class, // |
| 110 | + LaunchTests.class, // |
111 | 111 |
|
112 | 112 | // Status handlers |
113 | | - StatusHandlerTests.class, |
| 113 | + StatusHandlerTests.class, // |
114 | 114 |
|
115 | 115 | // Step filters |
116 | | - StepFiltersTests.class, |
| 116 | + StepFiltersTests.class, // |
117 | 117 |
|
118 | 118 | // Console view |
119 | | - ConsoleDocumentAdapterTests.class, |
120 | | - ConsoleManagerTests.class, |
121 | | - ConsoleTests.class, |
122 | | - IOConsoleTests.class, |
123 | | - IOConsoleFixedWidthTests.class, |
124 | | - ProcessConsoleManagerTests.class, |
125 | | - ProcessConsoleTests.class, |
126 | | - StreamsProxyTests.class, |
127 | | - TextConsoleViewerTest.class, |
128 | | - RuntimeProcessTests.class, |
129 | | - OutputStreamMonitorTests.class, |
130 | | - InputStreamMonitorTests.class, |
131 | | - FileLinkTests.class, |
| 119 | + ConsoleDocumentAdapterTests.class, // |
| 120 | + ConsoleManagerTests.class, // |
| 121 | + ConsoleTests.class, // |
| 122 | + IOConsoleTests.class, // |
| 123 | + IOConsoleFixedWidthTests.class, // |
| 124 | + ProcessConsoleManagerTests.class, // |
| 125 | + ProcessConsoleTests.class, // |
| 126 | + StreamsProxyTests.class, // |
| 127 | + TextConsoleViewerTest.class, // |
| 128 | + RuntimeProcessTests.class, // |
| 129 | + OutputStreamMonitorTests.class, // |
| 130 | + InputStreamMonitorTests.class, // |
| 131 | + FileLinkTests.class, // |
132 | 132 |
|
133 | 133 | // Launch Groups |
134 | | - LaunchGroupTests.class, |
135 | | - LaunchConfigurationTabGroupViewerTest.class, |
| 134 | + LaunchGroupTests.class, // |
| 135 | + LaunchConfigurationTabGroupViewerTest.class, // |
136 | 136 |
|
137 | 137 | // Logical structure |
138 | | - LogicalStructureCacheTest.class, |
| 138 | + LogicalStructureCacheTest.class, // |
139 | 139 | }) |
140 | 140 | public class AutomatedSuite { |
141 | 141 | } |
0 commit comments