Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MapGetTester (0.13 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/MapGetTester.java

     *
     * @author Kevin Bourrillion
     * @author Chris Povirk
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class MapGetTester<K, V> extends AbstractMapTester<K, V> {
      @CollectionSize.Require(absent = ZERO)
      public void testGet_yes() {
        assertEquals("get(present) should return the associated value", v0(), get(k0()));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/MapGetTester.java

     *
     * @author Kevin Bourrillion
     * @author Chris Povirk
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class MapGetTester<K, V> extends AbstractMapTester<K, V> {
      @CollectionSize.Require(absent = ZERO)
      public void testGet_yes() {
        assertEquals("get(present) should return the associated value", v0(), get(k0()));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapForEachTester;
    import com.google.common.collect.testing.testers.MapGetOrDefaultTester;
    import com.google.common.collect.testing.testers.MapGetTester;
    import com.google.common.collect.testing.testers.MapHashCodeTester;
    import com.google.common.collect.testing.testers.MapIsEmptyTester;
    import com.google.common.collect.testing.testers.MapMergeTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapEntrySetTester;
    import com.google.common.collect.testing.testers.MapEqualsTester;
    import com.google.common.collect.testing.testers.MapGetTester;
    import com.google.common.collect.testing.testers.MapHashCodeTester;
    import com.google.common.collect.testing.testers.MapIsEmptyTester;
    import com.google.common.collect.testing.testers.MapPutAllTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top