Example #1
0
 /**
  * Test construct and gets work
  */
 public function testGets()
 {
     $node = $this->getMock('Choccybiccy\\Pathfinder\\NodeInterface');
     $g = rand(1, 10);
     $f = rand(1, 10);
     $item = new Item($node, $g, $f);
     $this->assertEquals($node, $item->getNode());
     $this->assertEquals($g, $item->getG());
     $this->assertEquals($f, $item->getF());
 }