| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 
 | public class Scenario<E> {
  private List<E> liste;
  private ListIterator<E> iterateur = null;
 
  public Scenario(E... elements) {
    liste = new ArrayList<E>(Arrays.asList(elements));
  }
 
  public Scenario endroit() {
    iterateur = liste.listIterator();
    return this;
  }
 
  public Scenario envers() {
    iterateur = new InverseListIterator(liste); // Définit l'implémentation inversée
    return this;
  }
 
  public Scenario next(E element) {
    Assert.assertEquals(element, iterateur.next());
    return this;
  }
 
  public Scenario hasNoNext() {
    Assert.assertFalse(iterateur.hasNext());
    return this;
  }
 
  public Scenario nextIndex(int index) {
    Assert.assertEquals(index, iterateur.nextIndex());
    return this;
  }
 
  public Scenario previous(E element) {
    Assert.assertEquals(element, iterateur.previous());
    return this;
  }
 
  public Scenario hasNoPrevious() {
    Assert.assertFalse(iterateur.hasPrevious());
    return this;
  }
 
  public Scenario nextPrevious(int index) {
    Assert.assertEquals(index, iterateur.previousIndex());
    return this;
  }
 
  public Scenario add(E element) {
    iterateur.add(element);
    return this;
  }
 
  public Scenario remove() {
    iterateur.remove();
    return this;
  }
 
  public Scenario checkList(E... elements) {
    Assert.assertEquals(Arrays.asList(elements), liste);
    return this;
  }
} | 
Partager