public function ArgumentDateTest::testCreatedFullDateHandler in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Tests/Handler/ArgumentDateTest.php \Drupal\views\Tests\Handler\ArgumentDateTest::testCreatedFullDateHandler()
Tests the CreatedFullDate handler.
See also
\Drupal\node\Plugin\views\argument\CreatedFullDate
File
- core/
modules/ views/ src/ Tests/ Handler/ ArgumentDateTest.php, line 64 - Contains \Drupal\views\Tests\Handler\ArgumentDateTest.
Class
- ArgumentDateTest
- Tests the core date argument handlers.
Namespace
Drupal\views\Tests\HandlerCode
public function testCreatedFullDateHandler() {
$view = Views::getView('test_argument_date');
$view
->setDisplay('default');
$this
->executeView($view, array(
'20000102',
));
$expected = array();
$expected[] = array(
'id' => 2,
);
$this
->assertIdenticalResultset($view, $expected, $this->columnMap);
$view
->destroy();
$view
->setDisplay('default');
$this
->executeView($view, array(
'20000101',
));
$expected = array();
$expected[] = array(
'id' => 1,
);
$expected[] = array(
'id' => 3,
);
$expected[] = array(
'id' => 4,
);
$expected[] = array(
'id' => 5,
);
$this
->assertIdenticalResultset($view, $expected, $this->columnMap);
$view
->destroy();
$view
->setDisplay('default');
$this
->executeView($view, array(
'20001023',
));
$expected = array();
$this
->assertIdenticalResultset($view, $expected, $this->columnMap);
$view
->destroy();
}