/aosp_15_r20/external/tensorflow/tensorflow/python/util/protobuf/ |
H A D | compare_test.py | 43 def assertNotEquals(self, a, b): member in ProtoEqTest 61 self.assertNotEquals('string_: "a"', '') 63 self.assertNotEquals('string_: "b"', 'string_: "a"') 64 self.assertNotEquals('string_: "ab"', 'string_: "aa"') 66 self.assertNotEquals('int64_: 0', '') 68 self.assertNotEquals('int64_: -1', '') 69 self.assertNotEquals('int64_: 1', 'int64_: 0') 70 self.assertNotEquals('int64_: 0', 'int64_: -1') 72 self.assertNotEquals('float_: 0.0', '') 74 self.assertNotEquals('float_: -0.1', '') [all …]
|
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/ |
D | AttributionTest.java | 20 import static org.junit.Assert.assertNotEquals; 62 assertNotEquals( in equals_fail() 65 assertNotEquals( in equals_fail() 68 assertNotEquals( in equals_fail() 73 assertNotEquals( in equals_fail() 78 assertNotEquals( in equals_fail() 83 assertNotEquals( in equals_fail() 86 assertNotEquals( in equals_fail() 91 assertNotEquals( in equals_fail() 94 assertNotEquals( in equals_fail() [all …]
|
D | AttributedTriggerTest.java | 20 import static org.junit.Assert.assertNotEquals; 75 assertNotEquals( in equals_fail() 94 assertNotEquals( in equals_fail() 113 assertNotEquals( in equals_fail() 132 assertNotEquals( in equals_fail() 151 assertNotEquals( in equals_fail() 170 assertNotEquals( in equals_fail() 189 assertNotEquals( in equals_fail() 208 assertNotEquals( in equals_fail() 254 assertNotEquals( in hashCode_fail() [all …]
|
/aosp_15_r20/cts/tests/tests/externalservice/src/android/externalservice/cts/ |
H A D | ExternalServiceTest.java | 145 assertNotEquals(Process.myUid(), id.uid); in testBindExternalService() 146 assertNotEquals(Process.myPid(), id.pid); in testBindExternalService() 220 assertNotEquals(myUid, creatorId.uid); in testBindExternalServiceWithRunningOwn() 221 assertNotEquals(myUid, creatorServiceId.uid); in testBindExternalServiceWithRunningOwn() 222 assertNotEquals(myUid, serviceId.uid); in testBindExternalServiceWithRunningOwn() 223 assertNotEquals(myPid, creatorId.pid); in testBindExternalServiceWithRunningOwn() 224 assertNotEquals(myPid, creatorServiceId.pid); in testBindExternalServiceWithRunningOwn() 225 assertNotEquals(myPid, serviceId.pid); in testBindExternalServiceWithRunningOwn() 227 assertNotEquals(creatorId.uid, creatorServiceId.uid); in testBindExternalServiceWithRunningOwn() 228 assertNotEquals(creatorId.uid, serviceId.uid); in testBindExternalServiceWithRunningOwn() [all …]
|
/aosp_15_r20/external/testng/src/main/java/org/testng/asserts/ |
H A D | Assertion.java | 526 public void assertNotEquals(final Object actual, final Object expected, final String message) { in assertNotEquals() method in Assertion 530 org.testng.Assert.assertNotEquals(actual, expected, message); in assertNotEquals() 535 public void assertNotEquals(final Object actual, final Object expected) { in assertNotEquals() method in Assertion 539 org.testng.Assert.assertNotEquals(actual, expected); in assertNotEquals() 544 void assertNotEquals(final String actual, final String expected, final String message) { in assertNotEquals() method in Assertion 548 org.testng.Assert.assertNotEquals(actual, expected, message); in assertNotEquals() 553 void assertNotEquals(final String actual, final String expected) { in assertNotEquals() method in Assertion 557 org.testng.Assert.assertNotEquals(actual, expected); in assertNotEquals() 562 void assertNotEquals(final long actual, final long expected, final String message) { in assertNotEquals() method in Assertion 566 org.testng.Assert.assertNotEquals(actual, expected, message); in assertNotEquals() [all …]
|
/aosp_15_r20/external/testng/src/main/java/org/testng/ |
H A D | Assert.java | 822 public static void assertNotEquals(Object actual1, Object actual2, String message) { in assertNotEquals() method in Assert 835 public static void assertNotEquals(Object actual1, Object actual2) { in assertNotEquals() method in Assert 836 assertNotEquals(actual1, actual2, null); in assertNotEquals() 839 static void assertNotEquals(String actual1, String actual2, String message) { in assertNotEquals() method in Assert 840 assertNotEquals((Object) actual1, (Object) actual2, message); in assertNotEquals() 843 static void assertNotEquals(String actual1, String actual2) { in assertNotEquals() method in Assert 844 assertNotEquals(actual1, actual2, null); in assertNotEquals() 847 static void assertNotEquals(long actual1, long actual2, String message) { in assertNotEquals() method in Assert 848 assertNotEquals(Long.valueOf(actual1), Long.valueOf(actual2), message); in assertNotEquals() 851 static void assertNotEquals(long actual1, long actual2) { in assertNotEquals() method in Assert [all …]
|
/aosp_15_r20/packages/modules/Connectivity/tests/common/java/android/net/ |
D | NetworkTest.java | 21 import static org.junit.Assert.assertNotEquals; 133 assertNotEquals(0, one.hashCode()); in testGetNetworkHandle() 134 assertNotEquals(0, two.hashCode()); in testGetNetworkHandle() 135 assertNotEquals(0, three.hashCode()); in testGetNetworkHandle() 138 assertNotEquals(one.hashCode(), two.hashCode()); in testGetNetworkHandle() 139 assertNotEquals(one.hashCode(), three.hashCode()); in testGetNetworkHandle() 140 assertNotEquals(two.hashCode(), three.hashCode()); in testGetNetworkHandle() 143 assertNotEquals(0, one.getNetworkHandle()); in testGetNetworkHandle() 144 assertNotEquals(0, two.getNetworkHandle()); in testGetNetworkHandle() 145 assertNotEquals(0, three.getNetworkHandle()); in testGetNetworkHandle() [all …]
|
D | TcpKeepalivePacketDataTest.kt | 28 import kotlin.test.assertNotEquals in <lambda>() 59 assertNotEquals(makeData(srcAddress = parseNumericAddress("192.0.2.124")), makeData()) in <lambda>() 60 assertNotEquals(makeData(srcPort = 1235), makeData()) in <lambda>() 61 assertNotEquals(makeData(dstAddress = parseNumericAddress("192.0.2.232")), makeData()) in <lambda>() 62 assertNotEquals(makeData(dstPort = 4322), makeData()) in <lambda>() 64 assertNotEquals(makeData(tcpSeq = 136), makeData()) in <lambda>() 65 assertNotEquals(makeData(tcpAck = 247), makeData()) in <lambda>() 66 assertNotEquals(makeData(tcpWnd = 1235), makeData()) in <lambda>() 67 assertNotEquals(makeData(tcpWndScale = 3), makeData()) in <lambda>() 68 assertNotEquals(makeData(ipTos = 0x14), makeData()) in <lambda>() [all …]
|
/aosp_15_r20/external/google-auth-library-java/oauth2_http/javatests/com/google/auth/oauth2/ |
H A D | ExternalAccountAuthorizedUserCredentialsTest.java | 38 import static org.junit.Assert.assertNotEquals; 742 assertNotEquals(REFRESH_TOKEN, credentials.getRefreshToken()); in refreshAccessToken_withRefreshTokenRotation() 848 assertNotEquals(secondCredentials, credentials); in hashCode_differentCredentials() 849 assertNotEquals(credentials, secondCredentials); in hashCode_differentCredentials() 850 assertNotEquals(credentials.hashCode(), secondCredentials.hashCode()); in hashCode_differentCredentials() 869 assertNotEquals(secondCredentials, credentials); in hashCode_differentCredentialsWithCredentialsFile() 870 assertNotEquals(credentials, secondCredentials); in hashCode_differentCredentialsWithCredentialsFile() 871 assertNotEquals(credentials.hashCode(), secondCredentials.hashCode()); in hashCode_differentCredentialsWithCredentialsFile() 890 assertNotEquals(userCredentials, credentials); in equals_differentCredentials() 891 assertNotEquals(credentials, userCredentials); in equals_differentCredentials() [all …]
|
/aosp_15_r20/cts/tests/tests/media/audio/src/android/media/audio/cts/ |
H A D | AudioPresentationTest.java | 19 import static org.junit.Assert.assertNotEquals; 97 assertNotEquals(presentation1, null); in testEqualsAndHashCode() 98 assertNotEquals(presentation1, new Object()); in testEqualsAndHashCode() 106 assertNotEquals(presentation1, presentation3); in testEqualsAndHashCode() 107 assertNotEquals(presentation1.hashCode(), presentation3.hashCode()); in testEqualsAndHashCode() 119 assertNotEquals(presentation1, presentation3); in testEqualsAndHashCode() 120 assertNotEquals(presentation1.hashCode(), presentation3.hashCode()); in testEqualsAndHashCode() 132 assertNotEquals(presentation1, presentation3); in testEqualsAndHashCode() 133 assertNotEquals(presentation1.hashCode(), presentation3.hashCode()); in testEqualsAndHashCode() 145 assertNotEquals(presentation1, presentation3); in testEqualsAndHashCode() [all …]
|
/aosp_15_r20/external/doclava/doclet_adapter/src/test/java/com/google/doclava/javadoc/ |
H A D | MethodDocImplTest.java | 21 import static org.junit.Assert.assertNotEquals; 173 assertNotEquals(a, a.overriddenMethod()); in overriddenMethod() 174 assertNotEquals(b, b.overriddenMethod()); in overriddenMethod() 175 assertNotEquals(c, c.overriddenMethod()); in overriddenMethod() 176 assertNotEquals(d, d.overriddenMethod()); in overriddenMethod() 180 assertNotEquals(a, c.overriddenMethod()); in overriddenMethod() 183 assertNotEquals(a, CLASS_METHOD.override_public_String_toString0.overriddenMethod()); in overriddenMethod() 187 assertNotEquals(b, a.overriddenMethod()); in overriddenMethod() 188 assertNotEquals(c, a.overriddenMethod()); in overriddenMethod() 189 assertNotEquals(d, a.overriddenMethod()); in overriddenMethod() [all …]
|
/aosp_15_r20/frameworks/base/core/tests/timetests/src/android/service/timezone/ |
H A D | TimeZoneProviderEventTest.java | 29 import static org.junit.Assert.assertNotEquals; 147 assertNotEquals(failEvent, uncertainEvent); in isEquivalentToAndEquals() 150 assertNotEquals(failEvent, suggestionEvent); in isEquivalentToAndEquals() 153 assertNotEquals(uncertainEvent, suggestionEvent); in isEquivalentToAndEquals() 163 assertNotEquals(fail1v1, null); in isEquivalentToAndEquals_permanentFailure() 174 assertNotEquals(fail1v1, fail2); in isEquivalentToAndEquals_permanentFailure() 196 assertNotEquals(uncertain1v1, null); in isEquivalentToAndEquals_uncertain() 207 assertNotEquals(uncertain1v1, uncertain2); in isEquivalentToAndEquals_uncertain() 212 assertNotEquals(uncertain1v1, uncertain3); in isEquivalentToAndEquals_uncertain() 237 assertNotEquals(certain1v1, null); in isEquivalentToAndEquals_suggestion() [all …]
|
/aosp_15_r20/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/service/measurement/noising/ |
D | SourceNoiseHandlerTest.java | 20 import static org.junit.Assert.assertNotEquals; 93 assertNotEquals(0, fakeReports.size()); in fakeReports_flexEventReport_generatesFromStaticReportStates() 106 assertNotEquals(0, falseCount); in fakeReports_flexEventReport_generatesFromStaticReportStates() 107 assertNotEquals(0, neverCount); in fakeReports_flexEventReport_generatesFromStaticReportStates() 108 assertNotEquals(0, truthCount); in fakeReports_flexEventReport_generatesFromStaticReportStates() 135 assertNotEquals(0, fakeReports.size()); in fakeReports_flexEventReport_setsTriggerTime() 148 assertNotEquals(0, falseCount); in fakeReports_flexEventReport_setsTriggerTime() 149 assertNotEquals(0, neverCount); in fakeReports_flexEventReport_setsTriggerTime() 150 assertNotEquals(0, truthCount); in fakeReports_flexEventReport_setsTriggerTime() 151 assertNotEquals(0, triggerTimeGreaterThanSourceTimeCount); in fakeReports_flexEventReport_setsTriggerTime() [all …]
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/highmemorytest/libcore/icu/ |
H A D | SimpleDateFormatDataTest.java | 19 import static org.junit.Assert.assertNotEquals; 45 assertNotEquals(0, d.getDateFormat(DateFormat.FULL).length()); in testLongDateTimeFormat() 46 assertNotEquals(0, d.getDateFormat(DateFormat.LONG).length()); in testLongDateTimeFormat() 47 assertNotEquals(0, d.getDateFormat(DateFormat.MEDIUM).length()); in testLongDateTimeFormat() 48 assertNotEquals(0, d.getDateFormat(DateFormat.SHORT).length()); in testLongDateTimeFormat() 50 assertNotEquals(0, d.getTimeFormat(DateFormat.FULL).length()); in testLongDateTimeFormat() 51 assertNotEquals(0, d.getTimeFormat(DateFormat.LONG).length()); in testLongDateTimeFormat() 52 assertNotEquals(0, d.getTimeFormat(DateFormat.MEDIUM).length()); in testLongDateTimeFormat() 53 assertNotEquals(0, d.getTimeFormat(DateFormat.SHORT).length()); in testLongDateTimeFormat()
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/com/android/internal/widget/ |
H A D | LockscreenCredentialTest.java | 24 import static org.junit.Assert.assertNotEquals; 214 assertNotEquals(LockscreenCredential.createPassword("1234"), in testEquals() 216 assertNotEquals(LockscreenCredential.createPassword("1234"), in testEquals() 218 assertNotEquals(LockscreenCredential.createPassword("1234"), in testEquals() 220 assertNotEquals(LockscreenCredential.createPassword("1234"), in testEquals() 223 assertNotEquals(LockscreenCredential.createPin("1111"), in testEquals() 225 assertNotEquals(LockscreenCredential.createPin("1111"), in testEquals() 227 assertNotEquals(LockscreenCredential.createPin("1111"), in testEquals() 229 assertNotEquals(LockscreenCredential.createPin("1111"), in testEquals() 232 assertNotEquals(createPattern("5678"), in testEquals() [all …]
|
/aosp_15_r20/external/conscrypt/common/src/test/java/org/conscrypt/ |
H A D | HpkeContextTest.java | 35 import static org.junit.Assert.assertNotEquals; 62 assertNotEquals(encodeHex(enc1), encodeHex(enc2)); in testSealOpen_randomnessResult() 63 assertNotEquals(encodeHex(DEFAULT_PT), encodeHex(ciphertext1)); in testSealOpen_randomnessResult() 64 assertNotEquals(encodeHex(ciphertext1), encodeHex(ciphertext2)); in testSealOpen_randomnessResult() 92 assertNotEquals(encodeHex(enc1), encodeHex(enc2)); in testSealOpen_aadNullSameAsEmpty() 93 assertNotEquals(encodeHex(DEFAULT_PT), encodeHex(ciphertext1)); in testSealOpen_aadNullSameAsEmpty() 94 assertNotEquals(encodeHex(ciphertext1), encodeHex(ciphertext2)); in testSealOpen_aadNullSameAsEmpty() 123 assertNotEquals(encodeHex(enc1), encodeHex(enc2)); in testSealOpen_infoNullSameAsEmpty() 124 assertNotEquals(encodeHex(DEFAULT_PT), encodeHex(ciphertext1)); in testSealOpen_infoNullSameAsEmpty() 125 assertNotEquals(encodeHex(ciphertext1), encodeHex(ciphertext2)); in testSealOpen_infoNullSameAsEmpty() [all …]
|
/aosp_15_r20/external/apache-commons-io/src/test/java/org/apache/commons/io/ |
H A D | ByteOrderMarkTest.java | 21 import static org.junit.jupiter.api.Assertions.assertNotEquals; 67 assertNotEquals(ByteOrderMark.UTF_8, ByteOrderMark.UTF_16BE); in testEquals() 68 assertNotEquals(ByteOrderMark.UTF_8, ByteOrderMark.UTF_16LE); in testEquals() 69 assertNotEquals(ByteOrderMark.UTF_8, ByteOrderMark.UTF_32BE); in testEquals() 70 assertNotEquals(ByteOrderMark.UTF_8, ByteOrderMark.UTF_32LE); in testEquals() 76 assertNotEquals(TEST_BOM_1, new Object(), "Object not equal"); in testEquals() 77 assertNotEquals(TEST_BOM_1, new ByteOrderMark("1a", 2), "test1-1 not equal"); in testEquals() 78 assertNotEquals(TEST_BOM_1, new ByteOrderMark("1b", 1, 2), "test1-2 not test2"); in testEquals() 79 assertNotEquals(TEST_BOM_2, new ByteOrderMark("2", 1, 1), "test2 not equal"); in testEquals() 80 assertNotEquals(TEST_BOM_3, new ByteOrderMark("3", 1, 2, 4), "test3 not equal"); in testEquals()
|
/aosp_15_r20/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | NotificationAttentionHelperTest.java | 44 import static org.junit.Assert.assertNotEquals; 712 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testBeep() 811 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testBeepInsistently() 907 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testBeepTwice() 936 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testNoisyUpdateDoesNotCancelAudio() 950 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testNoisyOnceUpdateDoesNotCancelAudio() 989 assertNotEquals(-1, other.getLastAudiblyAlertedMs()); in testQuietUpdateDoesNotCancelAudioFromOther() 1015 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testQuietUpdateCancelsAudio() 1034 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testQuietOnceUpdateCancelsAudio() 1060 assertNotEquals(-1, r.getLastAudiblyAlertedMs()); in testInCallNotification() [all …]
|
/aosp_15_r20/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/ |
H A D | HpkeContextTest.java | 36 import static org.junit.Assert.assertNotEquals; 66 assertNotEquals(encodeHex(enc1), encodeHex(enc2)); in testSealOpen_randomnessResult() 67 assertNotEquals(encodeHex(DEFAULT_PT), encodeHex(ciphertext1)); in testSealOpen_randomnessResult() 68 assertNotEquals(encodeHex(ciphertext1), encodeHex(ciphertext2)); in testSealOpen_randomnessResult() 96 assertNotEquals(encodeHex(enc1), encodeHex(enc2)); in testSealOpen_aadNullSameAsEmpty() 97 assertNotEquals(encodeHex(DEFAULT_PT), encodeHex(ciphertext1)); in testSealOpen_aadNullSameAsEmpty() 98 assertNotEquals(encodeHex(ciphertext1), encodeHex(ciphertext2)); in testSealOpen_aadNullSameAsEmpty() 127 assertNotEquals(encodeHex(enc1), encodeHex(enc2)); in testSealOpen_infoNullSameAsEmpty() 128 assertNotEquals(encodeHex(DEFAULT_PT), encodeHex(ciphertext1)); in testSealOpen_infoNullSameAsEmpty() 129 assertNotEquals(encodeHex(ciphertext1), encodeHex(ciphertext2)); in testSealOpen_infoNullSameAsEmpty() [all …]
|
/aosp_15_r20/frameworks/base/tests/UsbTests/src/com/android/server/usb/ |
H A D | UsbHandlerTest.java | 20 import static org.junit.Assert.assertNotEquals; 198 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_MTP, 0); in setFunctionsMtp() 206 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_PTP, 0); in setFunctionsPtp() 214 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_MIDI, 0); in setFunctionsMidi() 222 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_RNDIS, 0); in setFunctionsRndis() 230 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_NCM, 0); in setFunctionsNcm() 301 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_MTP, 0); in userSwitchedDisablesMtp() 314 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_MTP, 0); in changedRestrictionsDisablesMtp() 328 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_MTP, 0); in disconnectResetsCharging() 341 assertNotEquals(mUsbHandler.getEnabledFunctions() & UsbManager.FUNCTION_MTP, 0); in configuredSendsBroadcast() [all …]
|
/aosp_15_r20/frameworks/base/core/tests/timetests/src/android/app/time/ |
H A D | TimeZoneDetectorStatusTest.java | 26 import static org.junit.Assert.assertNotEquals; 65 assertNotEquals(one, three); in testEquals() 66 assertNotEquals(three, one); in testEquals() 72 assertNotEquals(telephonyAlgorithmStatus, ARBITRARY_TELEPHONY_ALGORITHM_STATUS); in testEquals() 76 assertNotEquals(one, three); in testEquals() 77 assertNotEquals(three, one); in testEquals() 86 assertNotEquals(locationAlgorithmStatus, ARBITRARY_LOCATION_ALGORITHM_STATUS); in testEquals() 90 assertNotEquals(one, three); in testEquals() 91 assertNotEquals(three, one); in testEquals()
|
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/mutable/ |
H A D | MutableObjectTest.java | 20 import static org.junit.jupiter.api.Assertions.assertNotEquals; 56 assertNotEquals(mutNumA, mutNumC); in testEquals() 57 assertNotEquals(mutNumB, mutNumC); in testEquals() 59 assertNotEquals(mutNumA, mutNumD); in testEquals() 62 assertNotEquals(null, mutNumA); in testEquals() 63 assertNotEquals(mutNumA, new Object()); in testEquals() 64 assertNotEquals("0", mutNumA); in testEquals() 88 assertNotEquals(mutNumA.hashCode(), mutNumC.hashCode()); in testHashCode() 89 assertNotEquals(mutNumA.hashCode(), mutNumD.hashCode()); in testHashCode()
|
/aosp_15_r20/frameworks/base/core/tests/GameManagerTests/src/android/app/ |
H A D | GameModeConfigurationTest.java | 21 import static org.junit.Assert.assertNotEquals; 50 assertNotEquals(config.hashCode(), config2.hashCode()); in testEqualsAndHashCode() 55 assertNotEquals(config.hashCode(), config3.hashCode()); in testEqualsAndHashCode() 57 assertNotEquals(config2.hashCode(), config3.hashCode()); in testEqualsAndHashCode() 62 assertNotEquals(config.hashCode(), config4.hashCode()); in testEqualsAndHashCode() 67 assertNotEquals(config.hashCode(), config5.hashCode()); in testEqualsAndHashCode() 72 assertNotEquals(config.hashCode(), config6.hashCode()); in testEqualsAndHashCode() 74 assertNotEquals(config2.hashCode(), config6.hashCode()); in testEqualsAndHashCode() 76 assertNotEquals(config3.hashCode(), config6.hashCode()); in testEqualsAndHashCode()
|
/aosp_15_r20/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/ |
D | DhcpLeaseTest.kt | 30 import kotlin.test.assertNotEquals 66 assertNotEquals(lease, DhcpLease(null, TEST_HWADDR, TEST_INETADDR, TEST_PREFIXLEN, in testEquals() 68 assertNotEquals(lease, DhcpLease(byteArrayOf(42), TEST_HWADDR, TEST_INETADDR, in testEquals() 72 assertNotEquals(lease, DhcpLease(TEST_CLIENT_ID, MacAddress.fromString("12:34:56:78:9A:0B"), in testEquals() 76 assertNotEquals(lease, DhcpLease(TEST_CLIENT_ID, TEST_HWADDR, in testEquals() 81 assertNotEquals(lease, DhcpLease(TEST_CLIENT_ID, TEST_HWADDR, TEST_INETADDR, 24, in testEquals() 85 assertNotEquals(lease, DhcpLease(TEST_CLIENT_ID, TEST_HWADDR, TEST_INETADDR, TEST_PREFIXLEN, in testEquals() 89 assertNotEquals(lease, DhcpLease(TEST_CLIENT_ID, TEST_HWADDR, TEST_INETADDR, TEST_PREFIXLEN, in testEquals() 91 assertNotEquals(lease, DhcpLease(TEST_CLIENT_ID, TEST_HWADDR, TEST_INETADDR, TEST_PREFIXLEN, in testEquals()
|
/aosp_15_r20/external/grpc-grpc-java/examples/android/clientcache/app/src/test/java/io/grpc/clientcacheexample/ |
H A D | SafeMethodCachingInterceptorTest.java | 6 import static org.junit.Assert.assertNotEquals; 174 assertNotEquals(reply1, reply2); in requestWithNoCacheOptionSkipsCache() 242 assertNotEquals(reply1, reply2); in responseNoCacheDirective_notCached() 243 assertNotEquals(reply1, reply2); in responseNoCacheDirective_notCached() 259 assertNotEquals(reply1, reply2); in responseNoStoreDirective_notCached() 275 assertNotEquals(reply1, reply2); in responseNoTransformDirective_notCached() 305 assertNotEquals(reply1, reply2); in responseMaxAge_caseInsensitive() 321 assertNotEquals(reply1, reply2); in responseNoCache_caseInsensitive() 337 assertNotEquals(reply1, reply2); in combinedResponseCacheControlDirectives_parsesWithoutError() 354 assertNotEquals(reply1, reply2); in separateResponseCacheControlDirectives_parsesWithoutError() [all …]
|