public function ArgumentDateTest::testDayHandler 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::testDayHandler()
Tests the Day handler.
See also
\Drupal\node\Plugin\views\argument\CreatedDay
File
- core/
modules/ views/ src/ Tests/ Handler/ ArgumentDateTest.php, line 95 - Contains \Drupal\views\Tests\Handler\ArgumentDateTest.
Class
- ArgumentDateTest
- Tests the core date argument handlers.
Namespace
Drupal\views\Tests\HandlerCode
public function testDayHandler() {
$view = Views::getView('test_argument_date');
$view
->setDisplay('embed_1');
$this
->executeView($view, array(
'02',
));
$expected = array();
$expected[] = array(
'id' => 2,
);
$this
->assertIdenticalResultset($view, $expected, $this->columnMap);
$view
->destroy();
$view
->setDisplay('embed_1');
$this
->executeView($view, array(
'01',
));
$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('embed_1');
$this
->executeView($view, array(
'23',
));
$expected = array();
$this
->assertIdenticalResultset($view, $expected, $this->columnMap);
}