You are here

public function ScheduleDataTest::testConfiguration in Loft Data Grids 7.2

File

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

Class

ScheduleDataTest

Namespace

AKlump\LoftDataGrids

Code

public function testConfiguration() {
  $this->obj
    ->setHoursPerDay(8);
  $this->obj
    ->setHoursKey('time');
  $this
    ->assertSame(8, $this->obj
    ->getHoursPerDay());
  $this
    ->assertSame('time', $this->obj
    ->getHoursKey());
}