Add Javadoc and related settings
[lttng-ust-java-tests.git] / src / test / java / org / lttng / ust / agent / integration / log4j / Log4jMultiSessionTest.java
index 64a44edf840f35d5e70902c98ea0bee0cb71eec0..31556b60317cf10813eb3e41001f6bc414aa1365 100644 (file)
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2015, EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 package org.lttng.ust.agent.integration.log4j;
 
 import static org.junit.Assume.assumeTrue;
@@ -17,6 +35,9 @@ import org.lttng.ust.agent.utils.LttngSession;
 import org.lttng.ust.agent.utils.LttngSession.Domain;
 import org.lttng.ust.agent.utils.MiscTestUtils;
 
+/**
+ * Log4j tests for multiple concurrent tracing sessions
+ */
 public class Log4jMultiSessionTest extends MultiSessionTestBase {
 
     private static final Domain DOMAIN = Domain.LOG4J;
@@ -26,6 +47,9 @@ public class Log4jMultiSessionTest extends MultiSessionTestBase {
     private Logger loggerC;
     private Logger loggerD;
 
+    /**
+     * Class setup
+     */
     @BeforeClass
     public static void log4jClassSetup() {
         /* Skip tests if we can't find the JNI library or lttng-tools */
@@ -35,11 +59,20 @@ public class Log4jMultiSessionTest extends MultiSessionTestBase {
         LttngSession.destroyAllSessions();
     }
 
+    /**
+     * Class teardown
+     */
     @AfterClass
     public static void log4jClassCleanup() {
         LttngSession.deleteAllTracee();
     }
 
+       /**
+        * Test setup
+        *
+        * @throws SecurityException
+        * @throws IOException
+        */
     @Before
     public void log4jSetup() throws SecurityException, IOException {
         // TODO Wipe all existing LTTng sessions?
@@ -65,6 +98,9 @@ public class Log4jMultiSessionTest extends MultiSessionTestBase {
         loggerD.addAppender((Appender) handlerD);
     }
 
+    /**
+     * Test teardown
+     */
     @After
     public void log4jTeardown() {
         loggerA.removeAppender((Appender) handlerA);
This page took 0.02315 seconds and 4 git commands to generate.