Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for TestSerialization (0.19 sec)

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

      /* The names of the expected method that tests serializable. */
      private static final ImmutableList<String> SERIALIZABLE_TEST_METHOD_NAMES =
          ImmutableList.of(
              "testSerializable", "testSerialization",
              "testEqualsAndSerializable", "testEqualsAndSerialization");
    
      /* The names of the expected method that tests equals. */
      private static final ImmutableList<String> EQUALS_TEST_METHOD_NAMES =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

        assertThat(rangeSet.asRanges())
            .containsExactly(Range.closedOpen(3, 5), Range.open(8, 9))
            .inOrder();
      }
    
      @GwtIncompatible // SerializableTester
      public void testSerialization() {
        RangeSet<Integer> rangeSet = TreeRangeSet.create();
        rangeSet.add(Range.closed(3, 10));
        rangeSet.remove(Range.open(5, 7));
        SerializableTester.reserializeAndAssert(rangeSet);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 24.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

      /* The names of the expected method that tests serializable. */
      private static final ImmutableList<String> SERIALIZABLE_TEST_METHOD_NAMES =
          ImmutableList.of(
              "testSerializable", "testSerialization",
              "testEqualsAndSerializable", "testEqualsAndSerialization");
    
      /* The names of the expected method that tests equals. */
      private static final ImmutableList<String> EQUALS_TEST_METHOD_NAMES =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top