You are here

public function DateTimePlusTest::testInvalidDates in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php \Drupal\Tests\Component\Datetime\DateTimePlusTest::testInvalidDates()
  2. 9 core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php \Drupal\Tests\Component\Datetime\DateTimePlusTest::testInvalidDates()

Tests invalid date handling.

@dataProvider providerTestInvalidDates

Parameters

mixed $input: Input argument for DateTimePlus.

string $timezone: Timezone argument for DateTimePlus.

string $format: Format argument for DateTimePlus.

string $message: Message to print if no errors are thrown by the invalid dates.

string $class: The Exception subclass to expect to be thrown.

File

core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php, line 266

Class

DateTimePlusTest
@coversDefaultClass \Drupal\Component\Datetime\DateTimePlus @group Datetime

Namespace

Drupal\Tests\Component\Datetime

Code

public function testInvalidDates($input, $timezone, $format, $message, $class) {
  $this
    ->expectException($class);
  DateTimePlus::createFromFormat($format, $input, $timezone);
}