Exemplo n.º 1
0
 /**
  * Test...
  *
  * @covers Joomla\Language\Language::getTag
  * @todo Implement testGetTag().
  *
  * @return void
  */
 public function testGetTag()
 {
     $this->assertEquals('en-GB', $this->object->getTag());
     // Remove the following lines when you implement this test.
     $this->markTestIncomplete('This test has not been implemented yet.');
 }
 /**
  * Test...
  *
  * @covers  Joomla\Language\Language::getTag
  *
  * @return  void
  *
  * @since   1.0
  */
 public function testGetTag()
 {
     $this->assertEquals('en-GB', $this->object->getTag());
     TestHelper::setValue($this->object, 'metadata', array('tag' => 'foobar'));
     $this->assertEquals('foobar', $this->object->getTag());
 }