Home
last modified time | relevance | path

Searched refs:assertInvariants (Results 1 – 17 of 17) sorted by relevance

/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java173 protected final void assertInvariants(Map<K, V> map) { in assertInvariants() method in MapInterfaceTest
289 assertInvariants(map); in testClear()
316 assertInvariants(map); in testContainsKey()
338 assertInvariants(map); in testContainsValue()
349 assertInvariants(map); in testEntrySet()
373 assertInvariants(map); in testEntrySetForEmptyMap()
385 assertInvariants(map); in testEntrySetContainsEntryIncompatibleKey()
412 assertInvariants(map); in testEntrySetContainsEntryNullKeyPresent()
437 assertInvariants(map); in testEntrySetContainsEntryNullKeyMissing()
481 assertInvariants(map); in testEntrySetIteratorRemove()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java173 protected final void assertInvariants(Map<K, V> map) { in assertInvariants() method in MapInterfaceTest
289 assertInvariants(map); in testClear()
316 assertInvariants(map); in testContainsKey()
338 assertInvariants(map); in testContainsValue()
349 assertInvariants(map); in testEntrySet()
373 assertInvariants(map); in testEntrySetForEmptyMap()
385 assertInvariants(map); in testEntrySetContainsEntryIncompatibleKey()
412 assertInvariants(map); in testEntrySetContainsEntryNullKeyPresent()
437 assertInvariants(map); in testEntrySetContainsEntryNullKeyMissing()
481 assertInvariants(map); in testEntrySetIteratorRemove()
[all …]
/external/guava/guava-tests/test/com/google/common/hash/
DAbstractStreamingHasherTest.java49 sink.assertInvariants(8); in testBytes()
57 sink.assertInvariants(2); in testShort()
65 sink.assertInvariants(4); in testInt()
73 sink.assertInvariants(8); in testLong()
81 sink.assertInvariants(2); in testChar()
103 sink.assertInvariants(4); in testFloat()
111 sink.assertInvariants(8); in testDouble()
163 sink.assertInvariants(expected.length); in testExhaustive()
219 void assertInvariants(int expectedBytes) {
DHashingTest.java55 HashTestUtils.assertInvariants(Hashing.md5()); in testMd5()
63 HashTestUtils.assertInvariants(Hashing.sha1()); in testSha1()
71 HashTestUtils.assertInvariants(Hashing.sha256()); in testSha256()
79 HashTestUtils.assertInvariants(Hashing.sha384()); in testSha384()
87 HashTestUtils.assertInvariants(Hashing.sha512()); in testSha512()
92 HashTestUtils.assertInvariants(Hashing.crc32()); in testCrc32()
97 HashTestUtils.assertInvariants(Hashing.adler32()); in testAdler32()
106 HashTestUtils.assertInvariants(Hashing.murmur3_128()); in testMurmur3_128()
115 HashTestUtils.assertInvariants(Hashing.murmur3_32()); in testMurmur3_32()
124 HashTestUtils.assertInvariants(Hashing.sipHash24()); in testSipHash24()
[all …]
DMurmur3Hash128Test.java79 HashTestUtils.assertInvariants(murmur3_128()); in testInvariants()
DMurmur3Hash32Test.java176 HashTestUtils.assertInvariants(murmur3_32()); in testInvariants()
DHashTestUtils.java469 static void assertInvariants(HashFunction hashFunction) { in assertInvariants() method in HashTestUtils
/external/guava/android/guava-tests/test/com/google/common/hash/
DAbstractStreamingHasherTest.java49 sink.assertInvariants(8); in testBytes()
57 sink.assertInvariants(2); in testShort()
65 sink.assertInvariants(4); in testInt()
73 sink.assertInvariants(8); in testLong()
81 sink.assertInvariants(2); in testChar()
103 sink.assertInvariants(4); in testFloat()
111 sink.assertInvariants(8); in testDouble()
163 sink.assertInvariants(expected.length); in testExhaustive()
219 void assertInvariants(int expectedBytes) {
DHashingTest.java55 HashTestUtils.assertInvariants(Hashing.md5()); in testMd5()
63 HashTestUtils.assertInvariants(Hashing.sha1()); in testSha1()
71 HashTestUtils.assertInvariants(Hashing.sha256()); in testSha256()
79 HashTestUtils.assertInvariants(Hashing.sha384()); in testSha384()
87 HashTestUtils.assertInvariants(Hashing.sha512()); in testSha512()
92 HashTestUtils.assertInvariants(Hashing.crc32()); in testCrc32()
97 HashTestUtils.assertInvariants(Hashing.adler32()); in testAdler32()
106 HashTestUtils.assertInvariants(Hashing.murmur3_128()); in testMurmur3_128()
115 HashTestUtils.assertInvariants(Hashing.murmur3_32()); in testMurmur3_32()
124 HashTestUtils.assertInvariants(Hashing.sipHash24()); in testSipHash24()
[all …]
DMurmur3Hash128Test.java79 HashTestUtils.assertInvariants(murmur3_128()); in testInvariants()
DMurmur3Hash32Test.java176 HashTestUtils.assertInvariants(murmur3_32()); in testInvariants()
DHashTestUtils.java469 static void assertInvariants(HashFunction hashFunction) { in assertInvariants() method in HashTestUtils
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowParcelTest.java61 assertInvariants(); in testReadIntWhenEmpty()
68 assertInvariants(); in testReadLongWhenEmpty()
74 assertInvariants(); in testReadStringWhenEmpty()
94 assertInvariants(); in testReadWriteNumbers()
107 assertInvariants(); in testReadWriteNumbers()
152 assertInvariants(); in testReadWriteMultipleStrings()
208 assertInvariants(); in testFullyOverwritten()
213 assertInvariants(); in testFullyOverwritten()
1015 assertInvariants(parcel); in testAppendFrom()
1016 assertInvariants(parcel2); in testAppendFrom()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractMultimapAsMapImplementsMapTest.java90 assertInvariants(map); in testRemove()
DTableCollectionTest.java862 assertInvariants(map); in testRemove()
/external/guava/android/guava-tests/test/com/google/common/collect/
DAbstractMultimapAsMapImplementsMapTest.java90 assertInvariants(map); in testRemove()
DTableCollectionTest.java862 assertInvariants(map); in testRemove()