001/*
002 *  jDTAUS Core RI Log4J Logging
003 *  Copyright (C) 2005 Christian Schulte
004 *  <cs@schulte.it>
005 *
006 *  This library is free software; you can redistribute it and/or
007 *  modify it under the terms of the GNU Lesser General Public
008 *  License as published by the Free Software Foundation; either
009 *  version 2.1 of the License, or any later version.
010 *
011 *  This library is distributed in the hope that it will be useful,
012 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
013 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014 *  Lesser General Public License for more details.
015 *
016 *  You should have received a copy of the GNU Lesser General Public
017 *  License along with this library; if not, write to the Free Software
018 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
019 *
020 */
021package org.jdtaus.core.logging.ri.log4j.test;
022
023import org.jdtaus.core.logging.ri.log4j.Log4JLogger;
024import org.jdtaus.core.logging.spi.it.LoggerTest;
025
026/**
027 * Tests the {@link Log4JLogger} implementation.
028 *
029 * @author <a href="mailto:cs@schulte.it">Christian Schulte</a>
030 * @version $JDTAUS: Log4JLoggerTest.java 8709 2012-10-02 21:07:40Z schulte $
031 */
032public class Log4JLoggerTest extends LoggerTest
033{
034    //--Log4JLoggerTest---------------------------------------------------------
035
036    /** Creates a new {@code Log4JLoggerTest} instance. */
037    public Log4JLoggerTest()
038    {
039        super();
040        this.setLogger( new Log4JLogger() );
041    }
042
043    //---------------------------------------------------------Log4JLoggerTest--
044    //--Tests-------------------------------------------------------------------
045    //-------------------------------------------------------------------Tests--
046}