Migrate to Junit 5 Jupiter
[lttng-ust-java-tests.git] / lttng-ust-java-tests-log4j / src / test / java / org / lttng / ust / agent / integration / filter / Log4jFilterListenerIT.java
index abe591d30f90497a44d47828012cbbaa50e5f6f4..cc55f406cb0ce5b9df2cf0c595f2d3a55f12f4c1 100644 (file)
@@ -20,8 +20,8 @@ package org.lttng.ust.agent.integration.filter;
 
 import java.io.IOException;
 
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
 import org.lttng.tools.ILttngSession;
 import org.lttng.ust.agent.ILttngHandler;
 import org.lttng.ust.agent.log4j.LttngLogAppender;
@@ -38,7 +38,7 @@ public class Log4jFilterListenerIT extends FilterListenerITBase {
     /**
      * Class setup
      */
-    @BeforeClass
+    @BeforeAll
     public static void log4jClassSetup() {
         Log4jTestUtils.testClassSetup();
     }
@@ -46,7 +46,7 @@ public class Log4jFilterListenerIT extends FilterListenerITBase {
     /**
      * Class cleanup
      */
-    @AfterClass
+    @AfterAll
     public static void log4jClassCleanup() {
         Log4jTestUtils.testClassCleanup();
     }
This page took 0.023405 seconds and 4 git commands to generate.