|
@@ -2,16 +2,22 @@ package client;
|
|
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
|
|
+import org.junit.AfterClass;
|
|
|
import org.junit.BeforeClass;
|
|
|
import org.junit.Test;
|
|
|
|
|
|
+import server.Server;
|
|
|
+import server.ServerTestSuite;
|
|
|
+
|
|
|
public class ClientTestCase {
|
|
|
public static ChatWindow user1;
|
|
|
public static ChatWindow user2;
|
|
|
|
|
|
@BeforeClass
|
|
|
- public static void setUpClass() {
|
|
|
+ public static void setUpClass() {
|
|
|
+ ServerTestSuite.runServer.start();
|
|
|
user1 = new ChatWindow("localhost", 25566, "user1");
|
|
|
+ assertTrue(user1.so.isConnected());
|
|
|
}
|
|
|
|
|
|
@Test
|
|
@@ -25,5 +31,10 @@ public class ClientTestCase {
|
|
|
|
|
|
user1.send("/pm user2 Hi there user2!");
|
|
|
}
|
|
|
+
|
|
|
+ @AfterClass
|
|
|
+ public static void tearDownClass() {
|
|
|
+ Server.exit();
|
|
|
+ }
|
|
|
|
|
|
}
|