www.libre-service.eu-webapp/test/eu/libreservice/www/LibreServiceEuTest.java

71 lines
2 KiB
Java
Raw Normal View History

2021-11-25 00:25:13 +01:00
/*
* Copyright (C) 2019 Christian Pierre MOMON, DEVINSY
*
* This file is part of Juga, simple key value database.
*
* Juga 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.
*
* Juga 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 Juga. If not, see <http://www.gnu.org/licenses/>.
*/
package eu.libreservice.www;
2021-12-28 18:27:23 +01:00
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.core.config.Configurator;
import org.apache.logging.log4j.core.config.DefaultConfiguration;
2021-11-25 00:25:13 +01:00
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* The Class JugaTest.
*
* @author Christian Pierre MOMON
*/
public class LibreServiceEuTest
{
private static org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(LibreServiceEuTest.class);
@Test
public void testExport01() throws Exception
{
//
logger.debug("===== test starting...");
//
logger.debug("===== test done.");
}
/**
* After class.
*
* @throws LibreServiceEuWebException
* the Juga exception
*/
@AfterClass
public static void afterClass() throws LibreServiceEuWebException
{
}
/**
* Before class.
*
* @throws LibreServiceEuWebException
* the Juga exception
*/
@BeforeClass
public static void beforeClass() throws LibreServiceEuWebException
{
2021-12-28 18:27:23 +01:00
Configurator.initialize(new DefaultConfiguration());
Configurator.setRootLevel(Level.DEBUG);
2021-11-25 00:25:13 +01:00
}
}