ImboUnitTest\Model\StatusTest::testCanSetAndGetStorageStatus PHP Method

testCanSetAndGetStorageStatus() public method

    public function testCanSetAndGetStorageStatus()
    {
        $this->assertNull($this->model->getStorageStatus());
        $this->assertSame($this->model, $this->model->setStorageStatus(true));
        $this->assertTrue($this->model->getStorageStatus());
    }