Package com.jitlogic.zorka.core.test.integ

Source Code of com.jitlogic.zorka.core.test.integ.SyslogIntegTest

/**
* Copyright 2012-2014 Rafal Lewczuk <rafal.lewczuk@jitlogic.com>
* <p/>
* This 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 3 of the License, or (at your option) any later
* version.
* <p/>
* This software 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.
* <p/>
* You should have received a copy of the GNU General Public License
* along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
package com.jitlogic.zorka.core.test.integ;

import com.jitlogic.zorka.core.test.support.ZorkaFixture;
import com.jitlogic.zorka.core.integ.SyslogLib;
import com.jitlogic.zorka.core.integ.SyslogTrapper;
import org.junit.Test;

public class SyslogIntegTest extends ZorkaFixture {

    @Test
    public void testTrivialSyslog() throws Exception{
        SyslogTrapper trapper = syslogLib.trapper("test", "127.0.0.1", "test", SyslogLib.F_LOCAL0);
        trapper.log(SyslogLib.S_ERROR, SyslogLib.F_LOCAL5, "test", "Some test message.");
        Thread.sleep(10);
    }

}
TOP

Related Classes of com.jitlogic.zorka.core.test.integ.SyslogIntegTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.