Example #1
0
 public function testShouldGetEmptyArrayAsDirectSuccessorsIfNodeDoesNotExist()
 {
     $nonExistentNode = new MyNode(0, 0);
     $this->assertCount(0, $this->sut->getDirectSuccessors($nonExistentNode));
 }