70 lines
2 KiB
Java
70 lines
2 KiB
Java
/*
|
|
* 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;
|
|
|
|
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;
|
|
|
|
/**
|
|
* 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
|
|
{
|
|
Configurator.initialize(new DefaultConfiguration());
|
|
Configurator.setRootLevel(Level.DEBUG);
|
|
}
|
|
}
|