Exemplo n.º 1
0
 /**
  * @dataProvider data_atDay
  */
 public function test_atDay(YearMonth $test, $day, $expected)
 {
     if ($expected !== null) {
         $this->assertEquals($test->atDay($day), $expected);
     } else {
         try {
             $test->atDay($day);
             $this->fail();
         } catch (DateTimeException $ex) {
             // $expected
         }
     }
 }