/** Obtener duracion test. */
  @Test
  public final void obtenerDuracionPerformanceTest() {
    List<Anuncio> testElements = new ArrayList<Anuncio>();
    for (int i = 0; i < itNumber; i++) {
      testElements.add(new Anuncio());
    }

    EtmPoint point = etmMonitor.createPoint("AnuncioPerfTest:obtenerDuracion");

    for (Anuncio a : testElements) {
      a.obtenerDuracion();
    }

    point.collect();
  }
  /** Buscar test. */
  @Test
  public final void buscarPerformanceTest() {
    List<Anuncio> testElements = new ArrayList<Anuncio>();
    for (int i = 0; i < itNumber; i++) {
      Anuncio anuncio = new Anuncio();
      testElements.add(anuncio);
    }

    EtmPoint point = etmMonitor.createPoint("AnuncioPerfTest:buscar");

    for (Anuncio a : testElements) {
      a.buscar("PUBLICIDAD");
    }

    point.collect();
  }