Searched refs:networkForTest (Results 1 – 2 of 2) sorted by relevance
/external/guava/android/guava-tests/test/com/google/common/graph/ |
D | DefaultNetworkImplementationsTest.java | 47 private NetworkForTest<Integer, String> networkForTest; field in DefaultNetworkImplementationsTest 78 networkForTest = NetworkForTest.from(network); in setUp() 85 assertThat(networkForTest.edgesConnecting(N1, N2)).isEmpty(); in edgesConnecting_disconnectedNodes() 93 networkForTest.edgesConnecting(N1, NODE_NOT_IN_GRAPH); in edgesConnecting_nodesNotInGraph() 99 networkForTest.edgesConnecting(NODE_NOT_IN_GRAPH, N2); in edgesConnecting_nodesNotInGraph() 105 networkForTest.edgesConnecting(NODE_NOT_IN_GRAPH, NODE_NOT_IN_GRAPH); in edgesConnecting_nodesNotInGraph() 122 assertThat(networkForTest.edgesConnecting(N1, N2)).containsExactlyElementsIn(edgesConnecting); in edgesConnecting_checkReturnedSetMutability() 129 assertThat(networkForTest.edgesConnecting(N1, N2)).containsExactly(E12); in edgesConnecting_oneEdge() 131 assertThat(networkForTest.edgesConnecting(N2, N1)).isEmpty(); in edgesConnecting_oneEdge() 133 assertThat(networkForTest.edgesConnecting(N2, N1)).containsExactly(E12); in edgesConnecting_oneEdge() [all …]
|
/external/guava/guava-tests/test/com/google/common/graph/ |
D | DefaultNetworkImplementationsTest.java | 47 private NetworkForTest<Integer, String> networkForTest; field in DefaultNetworkImplementationsTest 78 networkForTest = NetworkForTest.from(network); in setUp() 85 assertThat(networkForTest.edgesConnecting(N1, N2)).isEmpty(); in edgesConnecting_disconnectedNodes() 93 networkForTest.edgesConnecting(N1, NODE_NOT_IN_GRAPH); in edgesConnecting_nodesNotInGraph() 99 networkForTest.edgesConnecting(NODE_NOT_IN_GRAPH, N2); in edgesConnecting_nodesNotInGraph() 105 networkForTest.edgesConnecting(NODE_NOT_IN_GRAPH, NODE_NOT_IN_GRAPH); in edgesConnecting_nodesNotInGraph() 122 assertThat(networkForTest.edgesConnecting(N1, N2)).containsExactlyElementsIn(edgesConnecting); in edgesConnecting_checkReturnedSetMutability() 129 assertThat(networkForTest.edgesConnecting(N1, N2)).containsExactly(E12); in edgesConnecting_oneEdge() 131 assertThat(networkForTest.edgesConnecting(N2, N1)).isEmpty(); in edgesConnecting_oneEdge() 133 assertThat(networkForTest.edgesConnecting(N2, N1)).containsExactly(E12); in edgesConnecting_oneEdge() [all …]
|