예제 #1
0
파일: WeekTest.php 프로젝트: a4tunado/piwik
 /**
  * @group Core
  */
 public function testGetPrettyString()
 {
     $this->loadEnglishTranslation();
     $week = new Week(Date::factory('2024-10-09'));
     $shouldBe = 'From 2024-10-07 to 2024-10-13';
     $this->assertEquals($shouldBe, $week->getPrettyString());
 }