Exemplo n.º 1
0
 public function testConsultarPorId()
 {
     $TipoSolucionw = new TipoSolucion();
     $TipoSolucionw->setId(1);
     $dao = FabricaDao::obtenerDaoTipoSolucion($TipoSolucionw);
     $valor = $dao->consultarPorId();
     $this->assertNotNull($valor);
 }