()
| 80 | } |
| 81 | |
| 82 | @BeforeEach |
| 83 | public void beforeEach() throws IOException { |
| 84 | logger.clear(); |
| 85 | socket = new Socket("localhost", server.port()); |
| 86 | socket.setSoTimeout(5_000); |
| 87 | inputStream = socket.getInputStream(); |
| 88 | outputStream = socket.getOutputStream(); |
| 89 | } |
| 90 | |
| 91 | @AfterEach |
| 92 | public void afterEach() throws IOException { |