コード例 #1
0
ファイル: AbstractTestCase.php プロジェクト: brick/date-time
 /**
  * @param integer  $month    The expected month.
  * @param integer  $day      The expected day.
  * @param MonthDay $monthDay The month-day to test.
  */
 protected function assertMonthDayIs($month, $day, MonthDay $monthDay)
 {
     $this->compare([$month, $day], [$monthDay->getMonth(), $monthDay->getDay()]);
 }