Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/org.eclipse.ui.monitoring.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Import-Package: org.junit.jupiter.api,
org.junit.platform.suite.api
Bundle-RequiredExecutionEnvironment: JavaSE-17
Bundle-SymbolicName: org.eclipse.ui.monitoring.tests;singleton:=true
Bundle-Vendor: %Bundle-Vendor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
*******************************************************************************/
package org.eclipse.ui.internal.monitoring;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Test suite for {@code org.eclipse.ui.monitoring} plug-in.
* The tests in {@link EventLoopMonitorThreadManualTests} are not included in this
* suite due to their flakiness.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
@Suite
@SelectClasses({
EventLoopMonitorThreadTests.class,
FilterHandlerTests.class,
DefaultLoggerTests.class})
Expand Down
Loading