Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for TestUnhashableCollectionGenerator (0.38 sec)

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

    /**
     * Creates collections containing unhashable sample elements, to be tested.
     *
     * @author Regina O'Dell
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
        implements TestCollectionGenerator<UnhashableObject> {
      @Override
      public SampleElements<UnhashableObject> samples() {
        return new Unhashables();
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestUnhashableCollectionGenerator.java

    /**
     * Creates collections containing unhashable sample elements, to be tested.
     *
     * @author Regina O'Dell
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
        implements TestCollectionGenerator<UnhashableObject> {
      @Override
      public SampleElements<UnhashableObject> samples() {
        return new Unhashables();
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

    import com.google.common.collect.testing.TestListGenerator;
    import com.google.common.collect.testing.TestStringListGenerator;
    import com.google.common.collect.testing.TestUnhashableCollectionGenerator;
    import com.google.common.collect.testing.UnhashableObject;
    import com.google.common.primitives.Chars;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.List;
    
    /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 5K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

    import com.google.common.collect.testing.TestListGenerator;
    import com.google.common.collect.testing.TestStringListGenerator;
    import com.google.common.collect.testing.TestUnhashableCollectionGenerator;
    import com.google.common.collect.testing.UnhashableObject;
    import com.google.common.primitives.Chars;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.List;
    
    /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 5K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

    import com.google.common.collect.testing.TestStringListGenerator;
    import com.google.common.collect.testing.TestStringMapGenerator;
    import com.google.common.collect.testing.TestUnhashableCollectionGenerator;
    import com.google.common.collect.testing.UnhashableObject;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.EnumMap;
    import java.util.List;
    import java.util.Map;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

    import com.google.common.collect.testing.TestStringListGenerator;
    import com.google.common.collect.testing.TestStringMapGenerator;
    import com.google.common.collect.testing.TestUnhashableCollectionGenerator;
    import com.google.common.collect.testing.UnhashableObject;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.EnumMap;
    import java.util.List;
    import java.util.Map;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

    import com.google.common.collect.testing.TestStringSetGenerator;
    import com.google.common.collect.testing.TestStringSortedSetGenerator;
    import com.google.common.collect.testing.TestUnhashableCollectionGenerator;
    import com.google.common.collect.testing.UnhashableObject;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    import java.util.Set;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

    import com.google.common.collect.testing.TestStringSetGenerator;
    import com.google.common.collect.testing.TestStringSortedSetGenerator;
    import com.google.common.collect.testing.TestUnhashableCollectionGenerator;
    import com.google.common.collect.testing.UnhashableObject;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    import java.util.Set;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 15.5K bytes
    - Viewed (0)
Back to top