You are here

public function ScheduleDataTest::testSetGetStartDate in Loft Data Grids 7.2

File

vendor/aklump/loft_data_grids/tests/phpunit/ScheduleDataTest.php, line 141

Class

ScheduleDataTest

Namespace

AKlump\LoftDataGrids

Code

public function testSetGetStartDate() {
  $control = new \DateTime('now', new \DateTimeZone('America/Los_Angeles'));
  $this->obj
    ->setStartDate($control);
  $this
    ->assertSame($control, $this->obj
    ->getStartDate());
}