diff options
| author | Remi NGUYEN VAN <reminv@google.com> | 2022-01-19 06:49:28 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2022-01-19 06:49:28 +0000 |
| commit | 0ac9163620bfb063c9b3aee576afc31335e8ec0c (patch) | |
| tree | 4d9054fafcecfeea9e864bda1734dc191a943b6e /tests/common/java/android/net/NetworkCapabilitiesTest.java | |
| parent | af7c44cc4e15cb8d0a3575ce255b8ecf06866a8b (diff) | |
| parent | 8bc36966d4e7aeb1eca933326d5e314af4909ed5 (diff) | |
Merge "Do not verify field count in tests used in CTS"
Diffstat (limited to 'tests/common/java/android/net/NetworkCapabilitiesTest.java')
| -rw-r--r-- | tests/common/java/android/net/NetworkCapabilitiesTest.java | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/tests/common/java/android/net/NetworkCapabilitiesTest.java b/tests/common/java/android/net/NetworkCapabilitiesTest.java index 2a4df7adea..9cc001dac3 100644 --- a/tests/common/java/android/net/NetworkCapabilitiesTest.java +++ b/tests/common/java/android/net/NetworkCapabilitiesTest.java @@ -59,7 +59,6 @@ import static com.android.modules.utils.build.SdkLevel.isAtLeastS; import static com.android.modules.utils.build.SdkLevel.isAtLeastT; import static com.android.testutils.MiscAsserts.assertEmpty; import static com.android.testutils.MiscAsserts.assertThrows; -import static com.android.testutils.ParcelUtils.assertParcelSane; import static com.android.testutils.ParcelUtils.assertParcelingIsLossless; import static org.junit.Assert.assertArrayEquals; @@ -344,21 +343,7 @@ public class NetworkCapabilitiesTest { } private void testParcelSane(NetworkCapabilities cap) { - // This test can be run as unit test against the latest system image, as CTS to verify - // an Android release that is as recent as the test, or as MTS to verify the - // Connectivity module. In the first two cases NetworkCapabilities will be as recent - // as the test. In the last case, starting from S NetworkCapabilities is updated as part - // of Connectivity, so it is also as recent as the test. For MTS on Q and R, - // NetworkCapabilities is not updatable, so it may have a different number of fields. - if (isAtLeastS()) { - // When this test is run on S+, NetworkCapabilities is as recent as the test, - // so this should be the most recent known number of fields. - assertParcelSane(cap, 18); - } else if (isAtLeastR()) { - assertParcelSane(cap, 15); - } else { - assertParcelSane(cap, 11); - } + assertParcelingIsLossless(cap); } private static NetworkCapabilities createNetworkCapabilitiesWithTransportInfo() { |
