ImboUnitTest\Model\StatusTest::testGetData PHP Method

testGetData() public method

public testGetData ( )
    public function testGetData()
    {
        $date = new DateTime();
        $this->model->setDate($date)->setDatabaseStatus(true)->setStorageStatus(true);
        $this->assertSame(['date' => $date, 'database' => true, 'storage' => true], $this->model->getData());
    }