예제 #1
0
 public function testSetInitial()
 {
     $initial = $this->getMock('Model\\WealthbotRebalancer\\Lot', null);
     $initial->setId(5);
     $this->lot->setInitial($initial);
     $this->assertEquals(5, $this->lot->getInitial()->getId());
 }