/** * @covers ::getMonthIterator * @uses \Scheduler\Component\DateContainer\PeriodIterator */ public function testGetMonthIterator() { $this->assertInstanceOf(PeriodIterator::class, self::$period->getMonthIterator(), "getMonthIterator returns a Period iterator"); $this->assertCount(2, self::$period->getMonthIterator(), "Month iterator (Period Iterator) must returns 2 months"); }