Ejemplo n.º 1
0
 /**
  * @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());
 }
Ejemplo n.º 2
0
 /**
  * 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.');
 }
Ejemplo n.º 3
0
 /**
  * Test...
  *
  * @return void
  */
 public function testGetPaths()
 {
     // Without extension, retuns NULL
     $this->assertNull($this->object->getPaths(''));
 }