JAVA-11775 Remove usage of deprecated JUnitPlatform.class in junit-5-basics module
This commit is contained in:
parent
45085ce61c
commit
a9eba4ed49
|
@ -17,7 +17,7 @@
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.platform</groupId>
|
<groupId>org.junit.platform</groupId>
|
||||||
<artifactId>junit-platform-runner</artifactId>
|
<artifactId>junit-platform-suite</artifactId>
|
||||||
<version>${junit-platform.version}</version>
|
<version>${junit-platform.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
|
@ -3,12 +3,9 @@ package com.baeldung;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
|
|
||||||
import com.baeldung.junit5.Greetings;
|
import com.baeldung.junit5.Greetings;
|
||||||
|
|
||||||
@RunWith(JUnitPlatform.class)
|
|
||||||
public class GreetingsUnitTest {
|
public class GreetingsUnitTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -10,7 +10,6 @@ import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.DisplayName;
|
import org.junit.jupiter.api.DisplayName;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
//@RunWith(JUnitPlatform.class)
|
|
||||||
public class JUnit5NewFeaturesUnitTest {
|
public class JUnit5NewFeaturesUnitTest {
|
||||||
|
|
||||||
private static final Logger log = Logger.getLogger(JUnit5NewFeaturesUnitTest.class.getName());
|
private static final Logger log = Logger.getLogger(JUnit5NewFeaturesUnitTest.class.getName());
|
||||||
|
|
|
@ -6,12 +6,9 @@ import org.junit.jupiter.api.Assertions;
|
||||||
import org.junit.jupiter.api.Disabled;
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Tag;
|
import org.junit.jupiter.api.Tag;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
|
|
||||||
@Tag("annotations")
|
@Tag("annotations")
|
||||||
@Tag("junit5")
|
@Tag("junit5")
|
||||||
@RunWith(JUnitPlatform.class)
|
|
||||||
public class AnnotationTestExampleUnitTest {
|
public class AnnotationTestExampleUnitTest {
|
||||||
@Test
|
@Test
|
||||||
public void shouldRaiseAnException() throws Exception {
|
public void shouldRaiseAnException() throws Exception {
|
||||||
|
|
|
@ -6,10 +6,7 @@ import java.util.List;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
import org.junit.jupiter.api.Disabled;
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
|
|
||||||
@RunWith(JUnitPlatform.class)
|
|
||||||
public class AssertionsExampleUnitTest {
|
public class AssertionsExampleUnitTest {
|
||||||
@Test
|
@Test
|
||||||
@Disabled
|
@Disabled
|
||||||
|
|
|
@ -3,12 +3,9 @@ package com.baeldung.migration.junit5;
|
||||||
import org.junit.jupiter.api.AfterAll;
|
import org.junit.jupiter.api.AfterAll;
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
import org.junit.jupiter.api.BeforeAll;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
@RunWith(JUnitPlatform.class)
|
|
||||||
public class BeforeAllAndAfterAllAnnotationsUnitTest {
|
public class BeforeAllAndAfterAllAnnotationsUnitTest {
|
||||||
|
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(BeforeAllAndAfterAllAnnotationsUnitTest.class);
|
private static final Logger LOG = LoggerFactory.getLogger(BeforeAllAndAfterAllAnnotationsUnitTest.class);
|
||||||
|
|
|
@ -9,12 +9,9 @@ import java.util.List;
|
||||||
import org.junit.jupiter.api.AfterEach;
|
import org.junit.jupiter.api.AfterEach;
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
@RunWith(JUnitPlatform.class)
|
|
||||||
public class BeforeEachAndAfterEachAnnotationsUnitTest {
|
public class BeforeEachAndAfterEachAnnotationsUnitTest {
|
||||||
|
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(BeforeEachAndAfterEachAnnotationsUnitTest.class);
|
private static final Logger LOG = LoggerFactory.getLogger(BeforeEachAndAfterEachAnnotationsUnitTest.class);
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
package com.baeldung.migration.junit5;
|
package com.baeldung.migration.junit5;
|
||||||
|
|
||||||
import com.baeldung.migration.junit5.extensions.TraceUnitExtension;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.extension.ExtendWith;
|
import org.junit.jupiter.api.extension.ExtendWith;
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
@RunWith(JUnitPlatform.class)
|
import com.baeldung.migration.junit5.extensions.TraceUnitExtension;
|
||||||
|
|
||||||
@ExtendWith(TraceUnitExtension.class)
|
@ExtendWith(TraceUnitExtension.class)
|
||||||
public class RuleExampleUnitTest {
|
public class RuleExampleUnitTest {
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
package com.baeldung.suites;
|
package com.baeldung.suites;
|
||||||
|
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
import org.junit.platform.suite.api.ExcludePackages;
|
||||||
import org.junit.platform.suite.api.SelectPackages;
|
import org.junit.platform.suite.api.SelectPackages;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.platform.suite.api.Suite;
|
||||||
|
|
||||||
@RunWith(JUnitPlatform.class)
|
@Suite
|
||||||
@SelectPackages("com.baeldung")
|
@SelectPackages("com.baeldung")
|
||||||
// @SelectClasses({AssertionTest.class, AssumptionTest.class, ExceptionTest.class})
|
@ExcludePackages("com.baeldung.suites")
|
||||||
public class AllUnitTest {
|
public class AllUnitTest {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
package com.baeldung.tags;
|
package com.baeldung.tags;
|
||||||
|
|
||||||
import org.junit.platform.runner.JUnitPlatform;
|
|
||||||
import org.junit.platform.suite.api.IncludeTags;
|
import org.junit.platform.suite.api.IncludeTags;
|
||||||
import org.junit.platform.suite.api.SelectPackages;
|
import org.junit.platform.suite.api.SelectPackages;
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
|
|
||||||
@RunWith(JUnitPlatform.class)
|
|
||||||
@SelectPackages("com.baeldung.tags")
|
@SelectPackages("com.baeldung.tags")
|
||||||
@IncludeTags("UnitTest")
|
@IncludeTags("UnitTest")
|
||||||
public class EmployeeDAOTestSuite {
|
public class EmployeeDAOTestSuite {
|
||||||
|
|
Loading…
Reference in New Issue