Viewing File: /home/ubuntu/code_review/arcanist/src/utils/__tests__/TestAbstractDirectedGraph.php

<?php

final class TestAbstractDirectedGraph extends AbstractDirectedGraph {

  private $nodes;

  public function setTestData(array $nodes) {
    $this->nodes = $nodes;
    return $this;
  }

  protected function loadEdges(array $nodes) {
    return array_select_keys($this->nodes, $nodes);
  }

}
Back to Directory File Manager