Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertNodeRemovedFromGraphErrorMessage (0.13 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

        // them to ensure that the validation check happens and has the expected behavior.
        assertNodeRemovedFromGraphErrorMessage(
            assertThrows(IllegalStateException.class, n1AdjacentNodes::size));
        assertNodeRemovedFromGraphErrorMessage(
            assertThrows(IllegalStateException.class, n1Predecessors::size));
        assertNodeRemovedFromGraphErrorMessage(
            assertThrows(IllegalStateException.class, n1Successors::size));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/TestUtil.java

        assertThat(throwable).hasMessageThat().startsWith(EDGE_STRING);
        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_NOT_IN_GRAPH);
      }
    
      static void assertNodeRemovedFromGraphErrorMessage(Throwable throwable) {
        assertThat(throwable).hasMessageThat().startsWith(NODE_STRING);
        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_REMOVED);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top