Пример #1
0
 public function testItShouldCheckIfIsWeekend()
 {
     Assert::isWeekend('2014-09-20');
     $this->setExpectedException(Exception::class);
     Assert::isWeekend('2014-09-22');
 }