- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for predecessors_checkReturnedSetMutability (0.66 seconds)
-
android/guava-tests/test/com/google/common/graph/AbstractGraphTest.java
* Verifies that the {@code Set} returned by {@code predecessors} has the expected mutability * property (see the {@code Graph} documentation for more information). */ @Test public abstract void predecessors_checkReturnedSetMutability(); /** * Verifies that the {@code Set} returned by {@code successors} has the expected mutability * property (see the {@code Graph} documentation for more information). */ @TestCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 07 15:57:03 GMT 2025 - 17.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/graph/AbstractGraphTest.java
* Verifies that the {@code Set} returned by {@code predecessors} has the expected mutability * property (see the {@code Graph} documentation for more information). */ @Test public abstract void predecessors_checkReturnedSetMutability(); /** * Verifies that the {@code Set} returned by {@code successors} has the expected mutability * property (see the {@code Graph} documentation for more information). */ @TestCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 07 15:57:03 GMT 2025 - 17.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java
addEdge(N1, N2, E12); assertThat(network.outEdges(N1)).containsExactlyElementsIn(outEdges); } @Override @Test public void predecessors_checkReturnedSetMutability() { addNode(N2); Set<Integer> predecessors = network.predecessors(N2); assertThrows(UnsupportedOperationException.class, () -> predecessors.add(N1)); addEdge(N1, N2, E12);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 30 17:09:51 GMT 2025 - 19K bytes - Click Count (0)