Author: ceki Date: Fri Jul 18 22:17:42 2008 New Revision: 1719 Modified: logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/spi/LoggingEventSerializationTest.java
Log: - removing "test" as a prefix from Junit 4 tests, so that they pass under Continuum Modified: logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/spi/LoggingEventSerializationTest.java ============================================================================== --- logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/spi/LoggingEventSerializationTest.java (original) +++ logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/spi/LoggingEventSerializationTest.java Fri Jul 18 22:17:42 2008 @@ -54,7 +54,7 @@ } @Test - public void testContext() throws Exception { + public void context() throws Exception { lc.putProperty("testKey", "testValue"); LoggingEvent event = createLoggingEvent(); LoggingEvent remoteEvent = writeAndRead(event); @@ -74,7 +74,7 @@ } @Test - public void testMDC() throws Exception { + public void MDC() throws Exception { MDC.put("key", "testValue"); LoggingEvent event = createLoggingEvent(); LoggingEvent remoteEvent = writeAndRead(event); @@ -84,7 +84,7 @@ } @Test - public void testUpdatedMDC() throws Exception { + public void updatedMDC() throws Exception { MDC.put("key", "testValue"); LoggingEvent event1 = createLoggingEvent(); oos.writeObject(event1); @@ -123,7 +123,7 @@ } @Test - public void testThrowable() throws Exception { + public void xThrowable() throws Exception { LoggingEvent event = createLoggingEvent(); Throwable throwable = new Throwable("just testing"); ThrowableInformation th = new ThrowableInformation(throwable); @@ -134,7 +134,7 @@ } @Test - public void testSerializeLargeArgs() throws Exception { + public void serializeLargeArgs() throws Exception { StringBuffer buffer = new StringBuffer(); for (int i = 0; i < 100000; i++) { _______________________________________________ logback-dev mailing list logback-dev@qos.ch http://qos.ch/mailman/listinfo/logback-dev