private void jButton1ActionPerformed(
      java.awt.event.ActionEvent evt) { // GEN-FIRST:event_jButton1ActionPerformed
    Participante participante =
        Logica.dameLogica()
            .obtenerParticipantePorString(
                (String) jList1.getSelectedValue(),
                Logica.dameLogica().getIdEventoActual(),
                Logica.dameLogica().getIdCategoriaActual());

    if (participante.getLimiteApuesta() > Float.parseFloat(montoApuesta.getText())) {
      ArrayList<Participante> lista = new ArrayList();
      lista.add(participante);

      Apuesta apuesta =
          new Apuesta(
              nombreApostador.getText(),
              apellidoApostador.getText(),
              Integer.parseInt(cedulaApostador.getText()),
              Integer.parseInt(montoApuesta.getText()),
              Logica.dameLogica().getIdEventoActual(),
              lista);

      Logica.dameLogica().agregarApuesta(apuesta);
      GestionArchivoPdf pdf = new GestionArchivoPdf();
      pdf.generarPdf(apuesta);
      apuesta.guardarApuesta(Logica.dameLogica().getListaApuestas());

      Persistencia.HiloUSB.dti.setVentana(new Apostar());
      this.setVisible(false);
      this.dispose();
    } else {
      new LimiteApuestaExcedido().setVisible(true);
    }
  } // GEN-LAST:event_jButton1ActionPerformed
 public void testGetNombre() {
   assertEquals("Juan Perozo", participante.getNombre());
 }
 public void testGetIdCategoria() {
   assertEquals(1, participante.getIdCategoria());
 }
 public void testGetDescripcion() {
   assertEquals("Gran codificador", participante.getDescripcion());
 }