public function test_factory_parse_nullText()
 {
     TestHelper::assertNullException($this, function () {
         LocalDate::parse(null);
     });
 }
 /**
  * @expectedException \Celest\DateTimeException
  */
 public function test_parse_isoLocalDate_M1000000000_failedCreate()
 {
     LocalDate::parse("-1000000000-08-06");
 }