/**
  * Test...
  *
  * @covers  Joomla\Language\Language::getErrorFiles
  *
  * @return  void
  *
  * @since   1.0
  */
 public function testGetErrorFiles()
 {
     TestHelper::setValue($this->object, 'errorfiles', array('foo', 'bar'));
     $this->assertEquals(array('foo', 'bar'), $this->object->getErrorFiles());
 }