Exemplo n.º 1
0
 /**
  * Method to test getLocale().
  *
  * @return void
  *
  * @covers Windwalker\Language\Language::getLocale
  */
 public function testGetAndSetLocale()
 {
     $this->assertEquals('en-GB', $this->instance->getLocale());
     $this->instance->setLocale('zh_tw');
     $this->assertEquals('zh-TW', $this->instance->getLocale());
 }