[logback-dev] svn commit: r1718 - logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/net
noreply.ceki at qos.ch
noreply.ceki at qos.ch
Fri Jul 18 22:15:23 CEST 2008
Author: ceki
Date: Fri Jul 18 22:15:22 2008
New Revision: 1718
Modified:
logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/net/SocketAppenderTest.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/net/SocketAppenderTest.java
==============================================================================
--- logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/net/SocketAppenderTest.java (original)
+++ logback/trunk/logback-classic/src/test/java/ch/qos/logback/classic/net/SocketAppenderTest.java Fri Jul 18 22:15:22 2008
@@ -41,7 +41,7 @@
private SimpleSocketServer simpleSocketServer;
@Test
- public void testStartFailNoRemoteHost() {
+ public void startFailNoRemoteHost() {
SocketAppender appender = new SocketAppender();
appender.setContext(lc);
appender.setPort(123);
@@ -50,7 +50,7 @@
}
@Test
- public void testRecieveMessage() throws InterruptedException {
+ public void recieveMessage() throws InterruptedException {
fireServer();
configureClient();
@@ -72,7 +72,7 @@
}
@Test
- public void testRecieveWithContext() throws InterruptedException {
+ public void recieveWithContext() throws InterruptedException {
fireServer();
configureClient();
@@ -102,7 +102,7 @@
}
@Test
- public void testMessageWithMDC() throws InterruptedException {
+ public void messageWithMDC() throws InterruptedException {
fireServer();
configureClient();
@@ -126,7 +126,7 @@
}
@Test
- public void testMessageWithMarker() throws InterruptedException {
+ public void messageWithMarker() throws InterruptedException {
fireServer();
configureClient();
@@ -149,7 +149,7 @@
}
@Test
- public void testMessageWithUpdatedMDC() throws InterruptedException {
+ public void messageWithUpdatedMDC() throws InterruptedException {
fireServer();
configureClient();
More information about the logback-dev
mailing list