@Test
 public void copyOf() {
   DirectedGraph<Integer, String> graph = Graphs.createDirected(directedGraph.config());
   populateInputGraph(graph);
   assertThat(ImmutableDirectedGraph.copyOf(graph)).isEqualTo(graph);
 }