Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testValues (0.04 sec)

  1. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertThat(loader.getCount()).isEqualTo(1);
    
        Object two = map.get(key, loader);
        assertThat(two).isNotSameInstanceAs(one);
        assertThat(loader.getCount()).isEqualTo(2);
      }
    
      public void testValues() {
        LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder());
        map.put("foo", "bar");
        map.put("baz", "bar");
        map.put("quux", "quux");
        assertThat(map.values() instanceof Set).isFalse();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 115.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertThat(loader.getCount()).isEqualTo(1);
    
        Object two = map.get(key, loader);
        assertThat(two).isNotSameInstanceAs(one);
        assertThat(loader.getCount()).isEqualTo(2);
      }
    
      public void testValues() {
        LocalCache<Object, Object> map = makeLocalCache(createCacheBuilder());
        map.put("foo", "bar");
        map.put("baz", "bar");
        map.put("quux", "quux");
        assertThat(map.values() instanceof Set).isFalse();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 117.5K bytes
    - Viewed (0)
Back to top