/**
  * @test
  * @group metadata
  * @group organization
  *
  * @expectedException \OpenConext\Value\Exception\IndexOutOfBoundsException
  */
 public function an_exception_is_thrown_when_attempting_to_get_an_element_with_an_index_larger_than_the_list_size()
 {
     $nameOne = new OrganizationName('OpenConext', 'en');
     $nameTwo = new OrganizationName('Different', 'en');
     $list = new OrganizationNameList(array($nameOne, $nameTwo));
     $list->get(4);
 }