Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 67 of 67 for reserializeAndAssert (0.11 seconds)

  1. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

      }
    
      @AndroidIncompatible // TODO(cpovirk): ClassNotFoundException... ClassSanityTesterTest$AnInterface
      public void testInterfaceProxySerializable() throws Exception {
        SerializableTester.reserializeAndAssert(tester.instantiate(HasAnInterface.class));
      }
    
      public void testReturnValuesFromAnotherPackageIgnoredForNullTests() throws Exception {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

      public void testSerialization() {
        RangeSet<Integer> rangeSet = TreeRangeSet.create();
        rangeSet.add(Range.closed(3, 10));
        rangeSet.remove(Range.open(5, 7));
        SerializableTester.reserializeAndAssert(rangeSet);
      }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 24.4K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/primitives/IntsTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testStringConverterSerialization() {
        SerializableTester.reserializeAndAssert(Ints.stringConverter());
      }
    
      public void testToArray() {
        // need explicit type parameter to avoid javac warning!?
        List<Integer> none = Arrays.<Integer>asList();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 20:45:32 GMT 2025
    - 29.3K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/primitives/ShortsTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testStringConverterSerialization() {
        SerializableTester.reserializeAndAssert(Shorts.stringConverter());
      }
    
      public void testToArray() {
        // need explicit type parameter to avoid javac warning!?
        List<Short> none = Arrays.<Short>asList();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 20:45:32 GMT 2025
    - 27.5K bytes
    - Click Count (0)
  5. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

              // If the factory returns null, we just skip it.
            }
            Object instance = instantiate(factory);
            if (instance != null) {
              try {
                SerializableTester.reserializeAndAssert(instance);
              } catch (Exception e) { // sneaky checked exception
                throw new AssertionError(
                    "Serialization failed on return value of " + factory, e.getCause());
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 32.5K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/collect/MapsTest.java

        ImmutableBiMap<String, Integer> biMap =
            ImmutableBiMap.of(
                "one", 1,
                "two", 2);
        Converter<String, Integer> converter = Maps.asConverter(biMap);
        SerializableTester.reserializeAndAssert(converter);
      }
    
      public void testUnmodifiableBiMap() {
        BiMap<Integer, String> mod = HashBiMap.create();
        mod.put(1, "one");
        mod.put(2, "two");
        mod.put(3, "three");
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 22:56:33 GMT 2025
    - 62.7K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/collect/MapsTest.java

        ImmutableBiMap<String, Integer> biMap =
            ImmutableBiMap.of(
                "one", 1,
                "two", 2);
        Converter<String, Integer> converter = Maps.asConverter(biMap);
        SerializableTester.reserializeAndAssert(converter);
      }
    
      public void testUnmodifiableBiMap() {
        BiMap<Integer, String> mod = HashBiMap.create();
        mod.put(1, "one");
        mod.put(2, "two");
        mod.put(3, "three");
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 22:56:33 GMT 2025
    - 65K bytes
    - Click Count (0)
Back to Top