BAEL-3863 Renamed tests to follow convention

This commit is contained in:
mdabrowski-eu 2020-04-25 18:07:27 +02:00
parent ca7d40de8f
commit cf6cbe92b9
1 changed files with 2 additions and 2 deletions

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);