blob: e906513a7bc703bf4d2c3e7bbcc2406b7e37ffa3 [file] [log] [blame]
package org.slf4j;
import junit.framework.TestCase;
public class NoBindingTest extends TestCase {
public void testLogger() {
try {
Logger logger = LoggerFactory.getLogger(NoBindingTest.class);
logger.debug("hello");
fail("slf4j-api does not ship with a binding");
} catch (NoClassDefFoundError e) {
}
}
public void testMDC() {
try {
MDC.put("k", "v");
fail("slf4j-api does not ship with a binding");
} catch (NoClassDefFoundError e) {
}
}
}