Initial commit for Software Engineerung & Programming Course

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2024-04-14 02:30:44 +02:00
commit 5e44b7547f
511 changed files with 50289 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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
}
}

View File

@@ -0,0 +1,28 @@
package Test;
import static org.junit.Assert.*;
import java.io.BufferedReader;
import java.net.Socket;
import org.junit.Test;
public class ServerIOThreadTest {
public ServerIOThreadTest() {
}
private Socket ioSocket;
private String userName;
protected void setUp() {
this.ioSocket = new Socket();
this.userName = "test-1";
}
@Test
public void testRun(){
}
}