/**
  * @todo Implement testGetPaths().
  */
 public function testGetPaths()
 {
     $extension1 = '';
     $extension2 = 'com_sobi2';
     $extension3 = 'joomla';
     $lang = new JLanguage('');
     // extension = joomla, returns array with language path
     $this->assertNotNull($lang->getPaths($extension3));
     // No call parameter, returns array with language path
     $this->assertNotNull($lang->getPaths());
 }
 /**
  * Test...
  *
  * @covers JLanguage::getPaths
  * @todo Implement testGetPaths().
  *
  * @return void
  */
 public function testGetPaths()
 {
     // Without extension, retuns NULL
     $this->assertNull($this->object->getPaths(''));
     // Remove the following lines when you implement this test.
     $this->markTestIncomplete('This test has not been implemented yet.');
 }
Exemple #3
0
 /**
  * Test...
  *
  * @return void
  */
 public function testGetPaths()
 {
     // Without extension, retuns NULL
     $this->assertNull($this->object->getPaths(''));
 }