Пример #1
0
  @Test
  public void shouldGetNonEmptyRelationshipsList() {
    Die die = UDie.with(name, faces);

    Iterable<Relationship> rels = die.listRelationships();

    assertThat(rels, is(notEmptyCollection()));
  }
Пример #2
0
  // public Iterable<Relationship> listRelationships() ***********************
  @Test
  public void shouldGetNonNullRelationshipsList() {
    Die die = UDie.with(name, faces);

    Iterable<Relationship> rels = die.listRelationships();

    assertNotNull(rels);
  }
Пример #3
0
  // Iterator<Face> iterator() ***********************************************
  @Test
  public void shouldGetNonNullIterator() {
    Die die = UDie.with(name, faces);

    Iterator<Face> iter = die.iterator();

    assertNotNull(iter);
  }
Пример #4
0
 @Test
 public void shouldReturnProperUDie() {
   assertNotNull(UDie.with(name, faces));
 }
Пример #5
0
 @Test
 public void shouldThrowIllegalArgumentExceptionWithNullArguments() {
   assertThrows(IllegalArgumentException.class, () -> UDie.with(null, null));
 }