1 6 package org.logicalcobwebs.logging; 7 8 import org.logicalcobwebs.proxool.AbstractProxoolTest; 9 10 18 public class Jdk14LoggerTest extends AbstractProxoolTest { 19 20 private static final Log LOG = LogFactory.getLog(Jdk14LoggerTest.class); 21 22 public Jdk14LoggerTest(String alias) { 23 super(alias); 24 } 25 26 31 protected void setUp() throws Exception { 32 } 34 35 40 protected void tearDown() throws Exception { 41 } 43 44 public void testJdk14Logger() { 45 LOG.info("Does this log correctly?"); 46 } 47 48 } 49 | Popular Tags |