Example #1
0
 /**
  * @dataProvider get_vertex_provider
  *
  * @param Graph  $graph
  * @param              $vertex
  * @param              $expected
  * @param              $msg
  */
 public function testGetVertex(Graph $graph, $vertex, $expected, $msg)
 {
     $this->assertEquals($expected, $graph->get_vertex($vertex), $msg);
 }