Skip to content

Commit d93d6bd

Browse files
committed
Remove Algorithm namespace (split off into separate repository)
1 parent 712e20d commit d93d6bd

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

tests/CompleteGraphTest.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
<?php
22

3-
use Fhaculty\Graph\Algorithm\Complete;
4-
5-
use Fhaculty\Graph\Algorithm\Directed;
6-
73
use Fhaculty\Graph\Graph;
8-
94
use Fhaculty\Graph\Loader\CompleteGraph;
105

116
class CompleteGraphTest extends TestCase
@@ -42,11 +37,5 @@ public function testDirected()
4237

4338
$this->assertEquals($n, count($graph->getVertices()));
4439
$this->assertEquals($n*($n-1), count($graph->getEdges())); // n*(n-1) for directed graphs
45-
46-
$alg = new Directed($graph);
47-
$this->assertTrue($alg->hasDirected());
48-
49-
$alg = new Complete($graph);
50-
$this->assertTrue($alg->isComplete());
5140
}
5241
}

0 commit comments

Comments
 (0)