public function DateTimePlusTest::testDateTimestamp in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php \Drupal\Tests\Component\Datetime\DateTimePlusTest::testDateTimestamp()
 - 10 core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php \Drupal\Tests\Component\Datetime\DateTimePlusTest::testDateTimestamp()
 
Test creating dates from datetime strings.
@dataProvider providerTestDateTimestamp
Parameters
string $input: Input argument for DateTimePlus().
array $initial: @see testTimestamp()
array $transform: @see testTimestamp()
File
- core/
tests/ Drupal/ Tests/ Component/ Datetime/ DateTimePlusTest.php, line 178  
Class
- DateTimePlusTest
 - @coversDefaultClass \Drupal\Component\Datetime\DateTimePlus @group Datetime
 
Namespace
Drupal\Tests\Component\DatetimeCode
public function testDateTimestamp($input, array $initial, array $transform) {
  // Initialize a new date object.
  $date = new DateTimePlus($input, $initial['timezone']);
  $this
    ->assertDateTimestamp($date, $input, $initial, $transform);
}