23 lines
353 B
Java
23 lines
353 B
Java
|
package Test;
|
||
|
|
||
|
import static org.junit.Assert.*;
|
||
|
|
||
|
import org.junit.Test;
|
||
|
|
||
|
public class ClientConnectionThreadTest {
|
||
|
|
||
|
public ClientConnectionThreadTest() {
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void testClientConnectionThread() {
|
||
|
fail("Not yet implemented"); // TODO
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void testRun() {
|
||
|
fail("Not yet implemented"); // TODO
|
||
|
}
|
||
|
|
||
|
}
|