public function ScheduleDataTest::testSetGetStartDate in Loft Data Grids 7.2
File
- vendor/
aklump/ loft_data_grids/ tests/ phpunit/ ScheduleDataTest.php, line 141
Class
Namespace
AKlump\LoftDataGridsCode
public function testSetGetStartDate() {
$control = new \DateTime('now', new \DateTimeZone('America/Los_Angeles'));
$this->obj
->setStartDate($control);
$this
->assertSame($control, $this->obj
->getStartDate());
}