- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for assertNodeNotInGraphErrorMessage (0.18 sec)
-
android/guava-tests/test/com/google/common/graph/DefaultNetworkImplementationsTest.java
() -> networkForTest.edgesConnecting(N1, NODE_NOT_IN_GRAPH)); assertNodeNotInGraphErrorMessage(e); e = assertThrows( IllegalArgumentException.class, () -> networkForTest.edgesConnecting(NODE_NOT_IN_GRAPH, N2)); assertNodeNotInGraphErrorMessage(e); e = assertThrows( IllegalArgumentException.class,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 7.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/TestUtil.java
private static final String EDGE_STRING = "Edge"; enum EdgeType { UNDIRECTED, DIRECTED; } private TestUtil() {} static void assertNodeNotInGraphErrorMessage(Throwable throwable) { assertThat(throwable).hasMessageThat().startsWith(NODE_STRING); assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_NOT_IN_GRAPH); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 4K bytes - Viewed (0)