- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for inEdges_checkReturnedSetMutability (0.1 sec)
-
android/guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java
addEdge(N1, N2, E12); assertThat(network.edgesConnecting(N1, N2)).containsExactlyElementsIn(edgesConnecting); } @Override @Test public void inEdges_checkReturnedSetMutability() { assume().that(graphIsMutable()).isTrue(); addNode(N2); Set<String> inEdges = network.inEdges(N2); assertThrows(UnsupportedOperationException.class, () -> inEdges.add(E12));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 20.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/AbstractStandardDirectedNetworkTest.java
addEdge(N1, N2, E12); assertThat(network.edgesConnecting(N1, N2)).containsExactlyElementsIn(edgesConnecting); } @Override @Test public void inEdges_checkReturnedSetMutability() { assume().that(graphIsMutable()).isTrue(); addNode(N2); Set<String> inEdges = network.inEdges(N2); assertThrows(UnsupportedOperationException.class, () -> inEdges.add(E12));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 21.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java
addEdge(N1, N2, E12); assertThat(network.edgesConnecting(N1, N2)).containsExactlyElementsIn(edgesConnecting); } @Override @Test public void inEdges_checkReturnedSetMutability() { addNode(N2); Set<String> inEdges = network.inEdges(N2); assertThrows(UnsupportedOperationException.class, () -> inEdges.add(E12)); addEdge(N1, N2, E12);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 18.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java
* Verifies that the {@code Set} returned by {@code inEdges} has the expected mutability property * (see the {@code Network} documentation for more information). */ @Test public abstract void inEdges_checkReturnedSetMutability(); /** * Verifies that the {@code Set} returned by {@code outEdges} has the expected mutability property * (see the {@code Network} documentation for more information). */ @Test
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 32.7K bytes - Viewed (0)