/**
	 * Test...
	 *
	 * @covers JLanguage::getUsed
	 * @todo Implement testGetUsed().
	 *
	 * @return void
	 */
	public function testGetUsed()
	{
		$this->assertEquals(
			array(),
			$this->object->getUsed(),
			'Line: ' . __LINE__
		);

		// Remove the following lines when you implement this test.
		$this->markTestIncomplete(
			'This test has not been implemented yet.'
		);
	}
Example #2
0
 /**
  * Test...
  *
  * @return void
  */
 public function testGetUsed()
 {
     $this->assertEquals(array(), $this->object->getUsed(), 'Line: ' . __LINE__);
 }
Example #3
0
 /**
  * @todo Implement testGetUsed().
  */
 public function testGetUsed()
 {
     $usedCompareEqual = array();
     $lang = new JLanguage('');
     // returns an empty array
     $this->assertEquals($usedCompareEqual, $lang->getUsed(), 'Line: ' . __LINE__);
 }