forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetworkTests.java
More file actions
47 lines (39 loc) · 1.18 KB
/
NetworkTests.java
File metadata and controls
47 lines (39 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.util.*;
import java.util.stream.*;
import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.*;
import onjava.*;
/* >*
Observation: I think some of the methods, such as ChatterClient.main,
would be more appropriate written as a test case, rather than part of the
actual class.
*< */
public class SimpleTcpTests {
@BeforeAll
static void startMsg() {
System.out.println(">>> Network Tests <<<");
}
@BeforeEach
static void setupServer () {
}
@Test
void basicTest() throws Exception {
SimpleServer server = new SimpleServer();
SimpleClient client = new SimpleClient();
client.main(null);
assertTrue(false); // Fail until there are good assertions in the test
}
@Test
void multiTest() throws Exception {
MultiSimpleClient client = new MultiSimpleClient();
MultiSimpleServer server = new MultiSimpleServer();
client.main(null);
assertTrue(false); // Fail until there are good assertions in the test
}
@Test
void chatterTest() throws Exception {
ChatterServer server = new ChatterServer();
ChatterClient.main(null);
assertTrue(false); // Fail until there are good assertions in the test
}
}