|
11 | 11 | package org.junit.platform.engine.support.hierarchical;
|
12 | 12 |
|
13 | 13 | import org.assertj.core.api.Condition;
|
14 |
| -import org.junit.jupiter.api.*; |
| 14 | +import org.junit.jupiter.api.AfterEach; |
| 15 | +import org.junit.jupiter.api.BeforeAll; |
| 16 | +import org.junit.jupiter.api.DynamicTest; |
15 | 17 | import org.junit.jupiter.api.MethodOrderer.MethodName;
|
| 18 | +import org.junit.jupiter.api.Nested; |
| 19 | +import org.junit.jupiter.api.RepeatedTest; |
| 20 | +import org.junit.jupiter.api.Test; |
| 21 | +import org.junit.jupiter.api.TestFactory; |
| 22 | +import org.junit.jupiter.api.TestMethodOrder; |
| 23 | +import org.junit.jupiter.api.TestReporter; |
16 | 24 | import org.junit.jupiter.api.extension.AfterTestExecutionCallback;
|
17 | 25 | import org.junit.jupiter.api.extension.ExtendWith;
|
18 | 26 | import org.junit.jupiter.api.extension.ExtensionContext;
|
|
48 | 56 | import static org.junit.jupiter.api.DynamicTest.dynamicTest;
|
49 | 57 | import static org.junit.jupiter.api.parallel.ExecutionMode.CONCURRENT;
|
50 | 58 | import static org.junit.jupiter.api.parallel.ExecutionMode.SAME_THREAD;
|
51 |
| -import static org.junit.jupiter.engine.Constants.*; |
| 59 | +import static org.junit.jupiter.engine.Constants.DEFAULT_CLASSES_EXECUTION_MODE_PROPERTY_NAME; |
| 60 | +import static org.junit.jupiter.engine.Constants.DEFAULT_PARALLEL_EXECUTION_MODE; |
| 61 | +import static org.junit.jupiter.engine.Constants.PARALLEL_CONFIG_FIXED_PARALLELISM_PROPERTY_NAME; |
| 62 | +import static org.junit.jupiter.engine.Constants.PARALLEL_CONFIG_FIXED_TEST_EXECUTOR_PROPERTY_NAME; |
| 63 | +import static org.junit.jupiter.engine.Constants.PARALLEL_CONFIG_STRATEGY_PROPERTY_NAME; |
| 64 | +import static org.junit.jupiter.engine.Constants.PARALLEL_EXECUTION_ENABLED_PROPERTY_NAME; |
52 | 65 | import static org.junit.platform.launcher.core.LauncherDiscoveryRequestBuilder.request;
|
53 |
| -import static org.junit.platform.testkit.engine.EventConditions.*; |
| 66 | +import static org.junit.platform.testkit.engine.EventConditions.container; |
| 67 | +import static org.junit.platform.testkit.engine.EventConditions.event; |
| 68 | +import static org.junit.platform.testkit.engine.EventConditions.finishedSuccessfully; |
| 69 | +import static org.junit.platform.testkit.engine.EventConditions.finishedWithFailure; |
| 70 | +import static org.junit.platform.testkit.engine.EventConditions.started; |
| 71 | +import static org.junit.platform.testkit.engine.EventConditions.test; |
| 72 | +import static org.junit.platform.testkit.engine.EventConditions.type; |
54 | 73 | import static org.junit.platform.testkit.engine.EventType.REPORTING_ENTRY_PUBLISHED;
|
55 | 74 |
|
56 | 75 | class FixedThreadsParallelExecutionIntegrationTests {
|
|
0 commit comments