Exemplo n.º 1
0
 /**
  * @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());
 }