コード例 #1
0
ファイル: RangeTest.php プロジェクト: FluentDevelopment/piwik
 public function testGetPrettyString()
 {
     $month = new Range('range', '2007-02-09,2007-03-15');
     $shouldBe = 'From 2007-02-09 to 2007-03-15';
     $this->assertEquals($shouldBe, $month->getPrettyString());
 }