BAEL-3863 Renamed tests to follow convention

This commit is contained in:
mdabrowski-eu
2020-04-25 18:07:27 +02:00
parent 2a9cc0c13e
commit 1b0e5e9fd7

View File

@@ -12,9 +12,9 @@ import scala.runtime.BoxedUnit;
import static org.junit.Assert.assertEquals;
public class ClientServerTest {
public class FinagleIntegrationTest {
@Test
public void clientShouldReceiveResponseFromServer() throws Exception {
public void givenServerAndClient_whenRequestSent_thenClientShouldReceiveResponseFromServer() throws Exception {
// given
Service serverService = new LogFilter().andThen(new GreetingService());
Http.serve(":8080", serverService);