Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ListEqualsTester (0.23 sec)

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

    /**
     * Tests {@link List#equals}.
     *
     * @author George van den Driessche
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class ListEqualsTester<E> extends AbstractListTester<E> {
      public void testEquals_otherListWithSameElements() {
        assertTrue(
            "A List should equal any other List containing the same elements.",
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 09 20:10:38 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/ListEqualsTester.java

    /**
     * Tests {@link List#equals}.
     *
     * @author George van den Driessche
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class ListEqualsTester<E> extends AbstractListTester<E> {
      public void testEquals_otherListWithSameElements() {
        assertTrue(
            "A List should equal any other List containing the same elements.",
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jan 09 20:10:38 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.ListAddTester;
    import com.google.common.collect.testing.testers.ListCreationTester;
    import com.google.common.collect.testing.testers.ListEqualsTester;
    import com.google.common.collect.testing.testers.ListGetTester;
    import com.google.common.collect.testing.testers.ListHashCodeTester;
    import com.google.common.collect.testing.testers.ListIndexOfTester;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.ListAddTester;
    import com.google.common.collect.testing.testers.ListCreationTester;
    import com.google.common.collect.testing.testers.ListEqualsTester;
    import com.google.common.collect.testing.testers.ListGetTester;
    import com.google.common.collect.testing.testers.ListHashCodeTester;
    import com.google.common.collect.testing.testers.ListIndexOfTester;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top