Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java

Issue 2377003002: Format all Java in WebRTC. (Closed)
Patch Set: Rebase. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
diff --git a/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java b/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
index 9c72c473118f210b4c502a435723480d42546ad2..6550b6b86a38b6fceace6a4a8722feaed3a61ee9 100644
--- a/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
+++ b/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
@@ -62,6 +62,7 @@ public class DirectRTCClientTest {
@Test
public void testValidIpPattern() {
// Strings that should match the pattern.
+ // clang-format off
final String[] ipAddresses = new String[] {
"0.0.0.0",
"127.0.0.1",
@@ -79,6 +80,7 @@ public class DirectRTCClientTest {
"[::1]:8888",
"[2001:0db8:85a3:0000:0000:8a2e:0370:7946]:8888"
};
+ // clang-format on
for (String ip : ipAddresses) {
assertTrue(ip + " didn't match IP_PATTERN even though it should.",
@@ -89,6 +91,7 @@ public class DirectRTCClientTest {
@Test
public void testInvalidIpPattern() {
// Strings that shouldn't match the pattern.
+ // clang-format off
final String[] invalidIpAddresses = new String[] {
"Hello, World!",
"aaaa",
@@ -96,6 +99,7 @@ public class DirectRTCClientTest {
"[hello world]",
"hello:world"
};
+ // clang-format on
for (String invalidIp : invalidIpAddresses) {
assertFalse(invalidIp + " matched IP_PATTERN even though it shouldn't.",
@@ -121,8 +125,8 @@ public class DirectRTCClientTest {
verify(clientEvents, timeout(NETWORK_TIMEOUT))
.onConnectedToRoom(any(AppRTCClient.SignalingParameters.class));
- SessionDescription answerSdp
- = new SessionDescription(SessionDescription.Type.ANSWER, DUMMY_SDP);
+ SessionDescription answerSdp =
+ new SessionDescription(SessionDescription.Type.ANSWER, DUMMY_SDP);
client.sendAnswerSdp(answerSdp);
verify(serverEvents, timeout(NETWORK_TIMEOUT))
.onRemoteDescription(isNotNull(SessionDescription.class));

Powered by Google App Engine
This is Rietveld 408576698