Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
GenerationDirectoryAccessExceptionTest.php
Go to the documentation of this file.
1 <?php
7 
9 
10 class GenerationDirectoryAccessExceptionTest extends \PHPUnit\Framework\TestCase
11 {
12  public function testConstructor()
13  {
14  $exception = new GenerationDirectoryAccessException();
15 
16  $this->assertContains(
17  'Command line user does not have read and write permissions on generated directory.',
18  $exception->getMessage()
19  );
20  }
21 }