Do not verify field count in tests used in CTS
Tests in tests/common and tests/cts are run as part of CtsNetTestCases. Many used assertFieldCountEquals in parceling/unparceling tests to ensure that unexpected fields were not added, or that they were not missed when testing parceling/unparceling. However with many of the classes updatable through module updates, the field count may change in the future, breaking CTS tests. Stop checking for the field count, as it would break on module releases, and its value is lower than the maintenance cost. Bug: 205901761 Test: atest CtsNetTestCases Change-Id: I79854741f7e834574d4825bb737ef507785310fe
This commit is contained in:
@@ -17,7 +17,6 @@
|
||||
package android.net;
|
||||
|
||||
import static com.android.net.module.util.Inet4AddressUtils.inet4AddressToIntHTL;
|
||||
import static com.android.testutils.MiscAsserts.assertFieldCountEquals;
|
||||
import static com.android.testutils.ParcelUtils.parcelingRoundTrip;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
@@ -101,7 +100,6 @@ public class DhcpInfoTest {
|
||||
// Cannot use assertParcelSane() here because this requires .equals() to work as
|
||||
// defined, but DhcpInfo has a different legacy behavior that we cannot change.
|
||||
final DhcpInfo dhcpInfo = createDhcpInfoObject();
|
||||
assertFieldCountEquals(7, DhcpInfo.class);
|
||||
|
||||
final DhcpInfo dhcpInfoRoundTrip = parcelingRoundTrip(dhcpInfo);
|
||||
assertTrue(dhcpInfoEquals(null, null));
|
||||
|
||||
Reference in New Issue
Block a user