Beispiel #1
0
 /**
  *
  * @param Vertices $vertices
  * @depends testTwo
  * @expectedException OutOfBoundsException
  */
 public function testTwoDoesNotContainVertex3(Vertices $vertices)
 {
     $graph = new Graph();
     $v3 = $graph->createVertex(3);
     $vertices->getIndexVertex($v3);
 }