Skip to content

Commit 8302f98

Browse files
committed
rename for java naming conventions
1 parent 761bc1a commit 8302f98

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/test/java/org/prebid/server/it/360PlayVidTest.java renamed to src/test/java/org/prebid/server/it/ThreeSixtyPlayVidTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
import static com.github.tomakehurst.wiremock.client.WireMock.equalToJson;
1212
import static com.github.tomakehurst.wiremock.client.WireMock.post;
1313
import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo;
14+
import static java.util.Collections.singletonList;
1415

15-
public class 360PlayVidTest extends IntegrationTest {
16+
public class ThreeSixtyPlayVidTest extends IntegrationTest {
1617

1718
@Test
18-
public void openrtb2AuctionShouldRespondWithBidsFrom360PlayVid() throws IOException, JSONException {
19+
public void openrtb2AuctionShouldRespondWithBidsFromThreeSixtyPlayVid() throws IOException, JSONException {
1920
// given
2021
WIRE_MOCK_RULE.stubFor(post(urlPathEqualTo("/360playvid-exchange"))
2122
.withRequestBody(equalToJson(jsonFrom("openrtb2/360playvid/test-360playvid-bid-request.json")))
@@ -24,5 +25,8 @@ public void openrtb2AuctionShouldRespondWithBidsFrom360PlayVid() throws IOExcept
2425
// when
2526
final Response response = responseFor("openrtb2/360playvid/test-auction-360playvid-request.json",
2627
Endpoint.openrtb2_auction);
28+
29+
// then
30+
assertJsonEquals("openrtb2/360playvid/test-auction-360playvid-response.json", response, singletonList("360playvid"));
2731
}
2832
}

0 commit comments

Comments
 (0)