Пример #1
0
 public function testInicializacao()
 {
     $tarefa = new Entity\Tarefa('TesteNome', 'TesteCusto', 'TestePasso');
     $this->assertEquals('TesteNome', $tarefa->getNome());
     $this->assertEquals('TesteCusto', $tarefa->getCusto());
     $this->assertEquals('TestePasso', $tarefa->getPasso());
 }
 public function getCusto()
 {
     $this->__load();
     return parent::getCusto();
 }