You are here

public function DateTimePlusTest::testChainableNonCallable 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::testChainableNonCallable()
  2. 9 core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php \Drupal\Tests\Component\Datetime\DateTimePlusTest::testChainableNonCallable()

Tests that chained calls to non-existent functions throw an exception.

@covers ::__call

File

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

Class

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

Namespace

Drupal\Tests\Component\Datetime

Code

public function testChainableNonCallable() {
  $this
    ->expectException(\BadMethodCallException::class);
  $this
    ->expectExceptionMessage('Call to undefined method Drupal\\Component\\Datetime\\DateTimePlus::nonexistent()');
  $date = new DateTimePlus('now', 'Australia/Sydney');
  $date
    ->setTimezone(new \DateTimeZone('America/New_York'))
    ->nonexistent();
}