コード例 #1
0
ファイル: DayTest.php プロジェクト: diosmosis/piwik
 /**
  * @group Core
  * @dataProvider getLocalizedShortStrings
  */
 public function testGetLocalizedShortString($language, $shouldBe)
 {
     StaticContainer::get('Piwik\\Translation\\Translator')->setCurrentLanguage($language);
     $month = new Day(Date::factory('2024-10-09'));
     $this->assertEquals($shouldBe, $month->getLocalizedShortString());
 }
コード例 #2
0
ファイル: DayTest.php プロジェクト: carriercomm/piwik
 /**
  * @group Core
  */
 public function testGetLocalizedShortString()
 {
     Translate::loadEnglishTranslation();
     $month = new Day(Date::factory('2024-10-09'));
     $shouldBe = 'Wed 9 Oct';
     $this->assertEquals($shouldBe, $month->getLocalizedShortString());
 }