/**
	 * Test...
	 *
	 * @covers JLanguage::getOrphans
	 * @todo Implement testGetOrphans().
	 *
	 * @return void
	 */
	public function testGetOrphans()
	{
		$this->assertEquals(
			array(),
			$this->object->getOrphans(),
			'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 testGetOrphans()
 {
     $this->assertEquals(array(), $this->object->getOrphans(), 'Line: ' . __LINE__);
 }
Example #3
0
 /**
  * @todo Implement testGetOrphans().
  */
 public function testGetOrphans()
 {
     $orphansCompareEqual = array();
     $lang = new JLanguage('');
     // returns an empty array
     $this->assertEquals($orphansCompareEqual, $lang->getOrphans(), 'Line: ' . __LINE__);
 }