BAEL-3863 Renamed tests to follow convention
This commit is contained in:
parent
ca7d40de8f
commit
cf6cbe92b9
|
@ -12,9 +12,9 @@ import scala.runtime.BoxedUnit;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
|
||||||
public class ClientServerTest {
|
public class FinagleIntegrationTest {
|
||||||
@Test
|
@Test
|
||||||
public void clientShouldReceiveResponseFromServer() throws Exception {
|
public void givenServerAndClient_whenRequestSent_thenClientShouldReceiveResponseFromServer() throws Exception {
|
||||||
// given
|
// given
|
||||||
Service serverService = new LogFilter().andThen(new GreetingService());
|
Service serverService = new LogFilter().andThen(new GreetingService());
|
||||||
Http.serve(":8080", serverService);
|
Http.serve(":8080", serverService);
|
Loading…
Reference in New Issue