createGraph() public méthode

public createGraph ( ) : Fhaculty\Graph\Graph
Résultat Fhaculty\Graph\Graph
 public function testCreateGraph()
 {
     $dir = __DIR__ . '/../';
     $graphComposer = new GraphComposer($dir);
     $graph = $graphComposer->createGraph();
     $this->assertInstanceOf('Fhaculty\\Graph\\Graph', $graph);
     $this->assertTrue(count($graph->getVertices()) > 0);
 }