Пример #1
0
 /**
  * @covers  ::getMonth
  *
  * @dataProvider provideValidMonths
  * @param Day $day
  * @param $expectedMonth
  */
 public function testGetMonthReturnCorrectMonth(Day $day, $expectedMonth)
 {
     $this->assertEquals($expectedMonth, $day->getMonth());
 }