Exemplo n.º 1
0
 /**
  * Method to test sprintf().
  *
  * @return void
  *
  * @covers Windwalker\Language\Language::sprintf
  */
 public function testSprintf()
 {
     $this->assertEquals('The Sakura is beautiful~~~!!!', $this->instance->sprintf('WINDWALKER_LANGUAGE_TEST_BEAUTIFUL_FLOWER', 'Sakura'));
     $this->assertEquals('The Sunflower is beautiful~~~!!!', $this->instance->sprintf('WINDWALKER_LANGUAGE_TEST_BEAUTIFUL_FLOWER', 'Sunflower'));
 }