Пример #1
0
 /**
  * @dataProvider validDateFail
  */
 public function testValidDateFail($format, $input)
 {
     $date = new Date($this->logger);
     $date->set($input)->withFormat($format);
     $this->assertFalse($date->isValid());
     $this->assertNotEmpty($this->getLogContent());
 }