Package org.nutz.log

Source Code of org.nutz.log.SystemLogAdapterTest

package org.nutz.log;

import static org.junit.Assert.*;

import org.junit.Test;
import org.nutz.log.impl.SystemLogAdapter;

public class SystemLogAdapterTest {

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

  @Test
  public void testCanWork() {
    assertTrue(new SystemLogAdapter().canWork());
  }

}
TOP

Related Classes of org.nutz.log.SystemLogAdapterTest

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.