Package org.nutz.log.impl

Examples of org.nutz.log.impl.SystemLogAdapter


public class SystemLogAdapterTest {

  @Test
  public void testGetLogger() {
    LogAdapter logAdapter = new SystemLogAdapter();
    assertNotNull(logAdapter.getLogger(Log.class.getName()));
  }
View Full Code Here


    assertNotNull(logAdapter.getLogger(Log.class.getName()));
  }

  @Test
  public void testCanWork() {
    assertTrue(new SystemLogAdapter().canWork());
  }
View Full Code Here

public class SystemLogAdapterTest {

    @Test
    public void testGetLogger() {
        LogAdapter logAdapter = new SystemLogAdapter();
        assertNotNull(logAdapter.getLogger(Log.class.getName()));
    }
View Full Code Here

        assertNotNull(logAdapter.getLogger(Log.class.getName()));
    }

    @Test
    public void testCanWork() {
        assertTrue(new SystemLogAdapter().canWork());
    }
View Full Code Here

TOP

Related Classes of org.nutz.log.impl.SystemLogAdapter

Copyright © 2018 www.massapicom. 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.