Ejemplo n.º 1
0
 /**
  * @covers ::isEmpty
  */
 public function testIsEmpty()
 {
     $holidays = new Holidays();
     $this->assertTrue($holidays->isEmpty());
     $holidays = new Holidays([new DateTime('2015-02-02')]);
     $this->assertFalse($holidays->isEmpty());
 }