简体   繁体   中英

Log4j in Unit Testing Environment

I am performing JUnit Testing and receiving log4j:WARN No appenders could be found for logger (class .. ) error when I run test class(s).

Log4j properties file is present inside my folder root directory. This code seems to work but why doesn't log4j picked up automatically.

package com.folio3.automation;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Logger;
import org.junit.Test;
import junit.framework.Assert;

public class TestClass {

    static {
        BasicConfigurator.configure();
    }

    private static final Logger LOG = Logger.getLogger(TestClass.class);

    @Test
    public void test1(){
        LOG.info("test 1 called ");
        Assert.assertEquals(true, false);


    }

}

Do I have to call BasicConfigurator.configure(); in every class or Base class ? Is there any way to achieve?

尝试将应用程序根目录添加到VM start命令中,问题将消失。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM