some more test

This commit is contained in:
Thomas Andersen 2015-10-06 22:12:36 +02:00
parent 7ad5d6bba8
commit 828a7966c7
1 changed files with 4 additions and 1 deletions

View File

@ -5,11 +5,14 @@ import static org.junit.Assert.*;
import org.junit.Test;
import ca.uhn.fhir.util.jar.DependencyLogFactory;
import ca.uhn.fhir.util.jar.IDependencyLog;
public class DependencyLogUtilTest {
@Test
public void testDependencyLogFactory() {
assertNotNull(DependencyLogFactory.createJarLogger());
IDependencyLog logger = DependencyLogFactory.createJarLogger();
assertNotNull(logger);
logger.logStaxImplementation(DependencyLogUtilTest.class);
}
}