예제 #1
0
파일: ForHumansTest.php 프로젝트: hmlb/date
 public function testSetLocale()
 {
     Interval::setLocale('en');
     $this->assertSame('en', Interval::getLocale());
     Interval::setLocale('fr');
     $this->assertSame('fr', Interval::getLocale());
 }