public function ArgumentDateTimeTest::testDatetimeArgumentAll in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/datetime/src/Tests/Views/ArgumentDateTimeTest.php \Drupal\datetime\Tests\Views\ArgumentDateTimeTest::testDatetimeArgumentAll()
Test year, month, and day arguments combined.
File
- core/
modules/ datetime/ src/ Tests/ Views/ ArgumentDateTimeTest.php, line 122 - Contains \Drupal\datetime\Tests\Views\ArgumentDateTimeTest.
Class
- ArgumentDateTimeTest
- Tests the Drupal\datetime\Plugin\views\filter\Date handler.
Namespace
Drupal\datetime\Tests\ViewsCode
public function testDatetimeArgumentAll() {
$view = Views::getView('test_argument_datetime');
// The 'embed_3' display has year, month, and day arguments.
$view
->setDisplay('embed_3');
$this
->executeView($view, [
'2000',
'10',
'10',
]);
$expected = [];
$expected[] = [
'nid' => $this->nodes[0]
->id(),
];
$this
->assertIdenticalResultset($view, $expected, $this->map);
$view
->destroy();
$view
->setDisplay('embed_3');
$this
->executeView($view, [
'2002',
'01',
'01',
]);
$expected = [];
$expected[] = [
'nid' => $this->nodes[2]
->id(),
];
$this
->assertIdenticalResultset($view, $expected, $this->map);
$view
->destroy();
}