Home
last modified time | relevance | path

Searched refs:assertNotSame (Results 1 – 25 of 223) sorted by relevance

123456789

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/cfg/
DSerConfigTest.java30 assertNotSame(config, newConfig); in testSerConfig()
33 assertNotSame(config, config.with(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, false)); in testSerConfig()
35 assertNotSame(config, config.with(SerializationFeature.INDENT_OUTPUT, in testSerConfig()
41 assertNotSame(config, newConfig); in testSerConfig()
45assertNotSame(config, config.with(new ContextAttributes.Impl(Collections.singletonMap("a", "b")))); in testSerConfig()
53 assertNotSame(config, config.with(JsonWriteFeature.ESCAPE_NON_ASCII)); in testGeneratorFeatures()
55 assertNotSame(config, newConfig); in testGeneratorFeatures()
57 assertNotSame(config, config.without(JsonWriteFeature.ESCAPE_NON_ASCII)); in testGeneratorFeatures()
58 assertNotSame(config, config.withoutFeatures(JsonGenerator.Feature.IGNORE_UNKNOWN)); in testGeneratorFeatures()
64 assertNotSame(config, config.with(BogusFormatFeature.FF_DISABLED_BY_DEFAULT)); in testFormatFeatures()
[all …]
DDeserializationConfigTest.java48 assertNotSame(config, newConfig); in testBasicFeatures()
53 assertNotSame(config, config.with(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, false)); in testBasicFeatures()
55 assertNotSame(config, config.with(DeserializationFeature.ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT, in testBasicFeatures()
62 assertNotSame(config, config.with(JsonReadFeature.ALLOW_JAVA_COMMENTS)); in testParserFeatures()
63 assertNotSame(config, config.withFeatures(JsonReadFeature.ALLOW_JAVA_COMMENTS, in testParserFeatures()
66 assertNotSame(config, config.without(JsonReadFeature.ALLOW_JAVA_COMMENTS)); in testParserFeatures()
67 assertNotSame(config, config.withoutFeatures(JsonReadFeature.ALLOW_JAVA_COMMENTS, in testParserFeatures()
74 assertNotSame(config, config.with(BogusFormatFeature.FF_DISABLED_BY_DEFAULT)); in testFormatFeatures()
75 assertNotSame(config, config.withFeatures(BogusFormatFeature.FF_DISABLED_BY_DEFAULT, in testFormatFeatures()
77 assertNotSame(config, config.without(BogusFormatFeature.FF_ENABLED_BY_DEFAULT)); in testFormatFeatures()
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DObjectWriterTest.java165 assertNotSame(w, newW); in testViewSettings()
169 assertNotSame(w, newW); in testViewSettings()
184 assertNotSame(w, newW); in testMiscSettings()
208 assertNotSame(w, newW); in testRootValueSettings()
212 assertNotSame(w, newW); in testRootValueSettings()
222 assertNotSame(w, newW); in testRootValueSettings()
226 assertNotSame(w, newW); in testRootValueSettings()
229 assertNotSame(w, newW); in testRootValueSettings()
241 assertNotSame(w, newW); in testFeatureSettings()
249 assertNotSame(w, newW); in testFeatureSettings()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DTextFormatParseLocationTest.java80 assertNotSame(loc0, loc1); in testEquals()
81 assertNotSame(loc0, loc2); in testEquals()
82 assertNotSame(loc1, loc2); in testEquals()
/external/jsr330/tck/org/atinject/tck/auto/
DConvertible.java333 assertNotSame(car.driversSeatA, car.driversSeatB);
337 assertNotSame("Expected distinct values",
339 assertNotSame("Expected distinct values",
341 assertNotSame("Expected distinct values",
346 assertNotSame("Expected distinct values",
348 assertNotSame("Expected distinct values",
350 assertNotSame("Expected distinct values",
355 assertNotSame("Expected distinct values",
357 assertNotSame("Expected distinct values",
359 assertNotSame("Expected distinct values",
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/format/
DDataFormatMatcherTest.java59 assertNotSame(df0, df0.withOptimalMatch(MatchStrength.FULL_MATCH)); in testDetectorConfiguration()
60 assertNotSame(df0, df0.withMinimalMatch(MatchStrength.SOLID_MATCH)); in testDetectorConfiguration()
61assertNotSame(df0, df0.withMaxInputLookahead(DataFormatDetector.DEFAULT_MAX_INPUT_LOOKAHEAD + 5)); in testDetectorConfiguration()
/external/conscrypt/common/src/test/java/org/conscrypt/javax/net/ssl/
DSSLParametersTest.java22 import static org.junit.Assert.assertNotSame;
56 assertNotSame(cipherSuites, p.getCipherSuites()); in test_SSLParameters_cipherSuitesConstructor()
70 assertNotSame(cipherSuites, p.getCipherSuites()); in test_SSLParameters_cpherSuitesProtocolsConstructor()
71 assertNotSame(protocols, p.getProtocols()); in test_SSLParameters_cpherSuitesProtocolsConstructor()
91 assertNotSame(p.getCipherSuites(), p.getCipherSuites()); in test_SSLParameters_CipherSuites()
107 assertNotSame(p.getProtocols(), p.getProtocols()); in test_SSLParameters_Protocols()
DSSLSocketFactoryTest.java20 import static org.junit.Assert.assertNotSame;
56 assertNotSame(sf.getDefaultCipherSuites(), sf.getDefaultCipherSuites()); in test_SSLSocketFactory_getDefaultCipherSuitesReturnsCopies()
62 assertNotSame(sf.getSupportedCipherSuites(), sf.getSupportedCipherSuites()); in test_SSLSocketFactory_getSupportedCipherSuitesReturnsCopies()
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/javax/net/ssl/
DSSLParametersTest.java23 import static org.junit.Assert.assertNotSame;
60 assertNotSame(cipherSuites, p.getCipherSuites()); in test_SSLParameters_cipherSuitesConstructor()
74 assertNotSame(cipherSuites, p.getCipherSuites()); in test_SSLParameters_cpherSuitesProtocolsConstructor()
75 assertNotSame(protocols, p.getProtocols()); in test_SSLParameters_cpherSuitesProtocolsConstructor()
95 assertNotSame(p.getCipherSuites(), p.getCipherSuites()); in test_SSLParameters_CipherSuites()
111 assertNotSame(p.getProtocols(), p.getProtocols()); in test_SSLParameters_Protocols()
DSSLSocketFactoryTest.java21 import static org.junit.Assert.assertNotSame;
60 assertNotSame(sf.getDefaultCipherSuites(), sf.getDefaultCipherSuites()); in test_SSLSocketFactory_getDefaultCipherSuitesReturnsCopies()
66 assertNotSame(sf.getSupportedCipherSuites(), sf.getSupportedCipherSuites()); in test_SSLSocketFactory_getSupportedCipherSuitesReturnsCopies()
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DConnectivityStateInfoTest.java25 import static org.junit.Assert.assertNotSame;
68 assertNotSame(info1, info3); in equality()
72 assertNotSame(info5, info6); in equality()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
DMergeTagTest.java60 assertNotSame(explicit, merged1); in testMerge()
64 assertNotSame(explicit, merged2); in testMerge()
68 assertNotSame(explicit, merged3); in testMerge()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DWritableBufferAllocatorTestBase.java19 import static org.junit.Assert.assertNotSame;
38 assertNotSame(buffer1, buffer2); in testBuffersAreDifferent()
/external/mockftpserver/tags/1.0/src/test/java/org/mockftpserver/stub/
DStubFtpServer_MultipleClientsIntegrationTest.java80 assertNotSame("sessionId1 vs sessionId2", sessionId1, sessionId2); in testMultipleClients()
81 assertNotSame("sessionId2 vs sessionId3", sessionId2, sessionId3); in testMultipleClients()
82 assertNotSame("sessionId1 vs sessionId3", sessionId1, sessionId3); in testMultipleClients()
/external/mockftpserver/tags/1.1/src/test/java/org/mockftpserver/stub/
DStubFtpServer_MultipleClientsIntegrationTest.java80 assertNotSame("sessionId1 vs sessionId2", sessionId1, sessionId2); in testMultipleClients()
81 assertNotSame("sessionId2 vs sessionId3", sessionId2, sessionId3); in testMultipleClients()
82 assertNotSame("sessionId1 vs sessionId3", sessionId1, sessionId3); in testMultipleClients()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/test/
DSchedulerTest.kt25 assertNotSame(t1, mainThread) in <lambda>()
29 assertNotSame(t2, mainThread) in <lambda>()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/test/
DSchedulerTest.kt25 assertNotSame(t1, mainThread) in <lambda>()
29 assertNotSame(t2, mainThread) in <lambda>()
/external/okhttp/android/src/test/java/com/squareup/okhttp/
DConfigAwareConnectionPoolTest.java24 import static org.junit.Assert.assertNotSame;
46 assertNotSame(beforeEventInstance, instance.get()); in get()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/test/
DSchedulerTest.kt25 assertNotSame(t1, mainThread) in <lambda>()
29 assertNotSame(t2, mainThread) in <lambda>()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DDefaultIndenterTest.java22 assertNotSame(defaultIndenterThree, defaultIndenter); in testWithLinefeed()
33 assertNotSame(defaultIndenterThree, defaultIndenter); in testWithIndent()
/external/mockftpserver/tags/1.2.1/src/test/java/org/mockftpserver/stub/
DStubFtpServer_MultipleClientsIntegrationTest.java81 assertNotSame("sessionId1 vs sessionId2", sessionId1, sessionId2); in testMultipleClients()
82 assertNotSame("sessionId2 vs sessionId3", sessionId2, sessionId3); in testMultipleClients()
83 assertNotSame("sessionId1 vs sessionId3", sessionId1, sessionId3); in testMultipleClients()
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/stub/
DStubFtpServer_MultipleClientsIntegrationTest.java80 assertNotSame("sessionId1 vs sessionId2", sessionId1, sessionId2); in testMultipleClients()
81 assertNotSame("sessionId2 vs sessionId3", sessionId2, sessionId3); in testMultipleClients()
82 assertNotSame("sessionId1 vs sessionId3", sessionId1, sessionId3); in testMultipleClients()
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/stub/
DStubFtpServer_MultipleClientsIntegrationTest.java80 assertNotSame("sessionId1 vs sessionId2", sessionId1, sessionId2); in testMultipleClients()
81 assertNotSame("sessionId2 vs sessionId3", sessionId2, sessionId3); in testMultipleClients()
82 assertNotSame("sessionId1 vs sessionId3", sessionId1, sessionId3); in testMultipleClients()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/java/org/mockftpserver/stub/
DStubFtpServer_MultipleClientsIntegrationTest.java80 assertNotSame("sessionId1 vs sessionId2", sessionId1, sessionId2); in testMultipleClients()
81 assertNotSame("sessionId2 vs sessionId3", sessionId2, sessionId3); in testMultipleClients()
82 assertNotSame("sessionId1 vs sessionId3", sessionId1, sessionId3); in testMultipleClients()
/external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/stub/
DStubFtpServer_MultipleClientsIntegrationTest.java80 assertNotSame("sessionId1 vs sessionId2", sessionId1, sessionId2); in testMultipleClients()
81 assertNotSame("sessionId2 vs sessionId3", sessionId2, sessionId3); in testMultipleClients()
82 assertNotSame("sessionId1 vs sessionId3", sessionId1, sessionId3); in testMultipleClients()

123456789