Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testAssertContentsInOrder (0.08 sec)

  1. android/guava-testlib/test/com/google/common/collect/testing/HelpersTest.java

        try {
          assertEqualInOrder(list, differentContents);
          throw new Error();
        } catch (AssertionFailedError expected) {
        }
      }
    
      public void testAssertContentsInOrder() {
        List<?> list = asList("a", "b", "c");
        assertContentsInOrder(list, "a", "b", "c");
    
        try {
          assertContentsInOrder(list, "a", "b");
          throw new Error();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Apr 12 15:07:59 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/HelpersTest.java

        try {
          assertEqualInOrder(list, differentContents);
          throw new Error();
        } catch (AssertionFailedError expected) {
        }
      }
    
      public void testAssertContentsInOrder() {
        List<?> list = asList("a", "b", "c");
        assertContentsInOrder(list, "a", "b", "c");
    
        try {
          assertContentsInOrder(list, "a", "b");
          throw new Error();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Apr 12 15:07:59 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top