@Test
  @Transactional
  public void createJugadores() throws Exception {
    int databaseSizeBeforeCreate = jugadoresRepository.findAll().size();

    // Create the Jugadores

    restJugadoresMockMvc
        .perform(
            post("/api/jugadoress")
                .contentType(TestUtil.APPLICATION_JSON_UTF8)
                .content(TestUtil.convertObjectToJsonBytes(jugadores)))
        .andExpect(status().isCreated());

    // Validate the Jugadores in the database
    List<Jugadores> jugadoress = jugadoresRepository.findAll();
    assertThat(jugadoress).hasSize(databaseSizeBeforeCreate + 1);
    Jugadores testJugadores = jugadoress.get(jugadoress.size() - 1);
    assertThat(testJugadores.getNombreJugador()).isEqualTo(DEFAULT_NOMBRE_JUGADOR);
    assertThat(testJugadores.getFechaNacimiento()).isEqualTo(DEFAULT_FECHA_NACIMIENTO);
    assertThat(testJugadores.getNumCanastas()).isEqualTo(DEFAULT_NUM_CANASTAS);
    assertThat(testJugadores.getNumAsistencias()).isEqualTo(DEFAULT_NUM_ASISTENCIAS);
    assertThat(testJugadores.getNumRebotes()).isEqualTo(DEFAULT_NUM_REBOTES);
    assertThat(testJugadores.getPosicion()).isEqualTo(DEFAULT_POSICION);
  }
  @Test
  @Transactional
  public void updateJugadores() throws Exception {
    // Initialize the database
    jugadoresRepository.saveAndFlush(jugadores);

    int databaseSizeBeforeUpdate = jugadoresRepository.findAll().size();

    // Update the jugadores
    jugadores.setNombreJugador(UPDATED_NOMBRE_JUGADOR);
    jugadores.setFechaNacimiento(UPDATED_FECHA_NACIMIENTO);
    jugadores.setNumCanastas(UPDATED_NUM_CANASTAS);
    jugadores.setNumAsistencias(UPDATED_NUM_ASISTENCIAS);
    jugadores.setNumRebotes(UPDATED_NUM_REBOTES);
    jugadores.setPosicion(UPDATED_POSICION);

    restJugadoresMockMvc
        .perform(
            put("/api/jugadoress")
                .contentType(TestUtil.APPLICATION_JSON_UTF8)
                .content(TestUtil.convertObjectToJsonBytes(jugadores)))
        .andExpect(status().isOk());

    // Validate the Jugadores in the database
    List<Jugadores> jugadoress = jugadoresRepository.findAll();
    assertThat(jugadoress).hasSize(databaseSizeBeforeUpdate);
    Jugadores testJugadores = jugadoress.get(jugadoress.size() - 1);
    assertThat(testJugadores.getNombreJugador()).isEqualTo(UPDATED_NOMBRE_JUGADOR);
    assertThat(testJugadores.getFechaNacimiento()).isEqualTo(UPDATED_FECHA_NACIMIENTO);
    assertThat(testJugadores.getNumCanastas()).isEqualTo(UPDATED_NUM_CANASTAS);
    assertThat(testJugadores.getNumAsistencias()).isEqualTo(UPDATED_NUM_ASISTENCIAS);
    assertThat(testJugadores.getNumRebotes()).isEqualTo(UPDATED_NUM_REBOTES);
    assertThat(testJugadores.getPosicion()).isEqualTo(UPDATED_POSICION);
  }
  @Test
  @Transactional
  public void deleteJugadores() throws Exception {
    // Initialize the database
    jugadoresRepository.saveAndFlush(jugadores);

    int databaseSizeBeforeDelete = jugadoresRepository.findAll().size();

    // Get the jugadores
    restJugadoresMockMvc
        .perform(
            delete("/api/jugadoress/{id}", jugadores.getId())
                .accept(TestUtil.APPLICATION_JSON_UTF8))
        .andExpect(status().isOk());

    // Validate the database is empty
    List<Jugadores> jugadoress = jugadoresRepository.findAll();
    assertThat(jugadoress).hasSize(databaseSizeBeforeDelete - 1);
  }
  @Test
  @Transactional
  public void checkNombreJugadorIsRequired() throws Exception {
    int databaseSizeBeforeTest = jugadoresRepository.findAll().size();
    // set the field null
    jugadores.setNombreJugador(null);

    // Create the Jugadores, which fails.

    restJugadoresMockMvc
        .perform(
            post("/api/jugadoress")
                .contentType(TestUtil.APPLICATION_JSON_UTF8)
                .content(TestUtil.convertObjectToJsonBytes(jugadores)))
        .andExpect(status().isBadRequest());

    List<Jugadores> jugadoress = jugadoresRepository.findAll();
    assertThat(jugadoress).hasSize(databaseSizeBeforeTest);
  }
  @Test
  @Transactional
  public void getJugadores() throws Exception {
    // Initialize the database
    jugadoresRepository.saveAndFlush(jugadores);

    // Get the jugadores
    restJugadoresMockMvc
        .perform(get("/api/jugadoress/{id}", jugadores.getId()))
        .andExpect(status().isOk())
        .andExpect(content().contentType(MediaType.APPLICATION_JSON))
        .andExpect(jsonPath("$.id").value(jugadores.getId().intValue()))
        .andExpect(jsonPath("$.nombreJugador").value(DEFAULT_NOMBRE_JUGADOR.toString()))
        .andExpect(jsonPath("$.fechaNacimiento").value(DEFAULT_FECHA_NACIMIENTO.toString()))
        .andExpect(jsonPath("$.numCanastas").value(DEFAULT_NUM_CANASTAS))
        .andExpect(jsonPath("$.numAsistencias").value(DEFAULT_NUM_ASISTENCIAS))
        .andExpect(jsonPath("$.numRebotes").value(DEFAULT_NUM_REBOTES))
        .andExpect(jsonPath("$.posicion").value(DEFAULT_POSICION.toString()));
  }