/* * Copyright (C) 2019-2024 Christian Pierre MOMON, DEVINSY * * This file is part of StatoolInfosWeb, webapp to value service statistics. * * StatoolInfos is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * StatoolInfosWeb 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with StatoolInfosWeb. If not, see . */ package fr.devinsy.statoolinfos.web; import org.apache.logging.log4j.Level; import org.apache.logging.log4j.core.config.Configurator; import org.apache.logging.log4j.core.config.DefaultConfiguration; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import fr.devinsy.statoolinfosweb.StatoolInfosWebException; /** * The Class StatoolInfosWebTest. */ public class StatoolInfosWebTest { private static org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(StatoolInfosWebTest.class); @Test public void testExport01() throws Exception { // logger.debug("===== test starting..."); // logger.debug("===== test done."); } /** * After class. * * @throws JugaException * the Juga exception */ @AfterClass public static void afterClass() throws StatoolInfosWebException { } /** * Before class. * * @throws JugaException * the Juga exception */ @BeforeClass public static void beforeClass() throws StatoolInfosWebException { Configurator.initialize(new DefaultConfiguration()); Configurator.setRootLevel(Level.DEBUG); } }