You are here

public function ProjectUnitTest::setUp in Coder 8.3

Return value

void

File

tests/DrupalPractice/ProjectDetection/ProjectUnitTest.php, line 27

Class

ProjectUnitTest
Tests that project and version detection works.

Namespace

DrupalPractice\Test\ProjectDetection

Code

public function setUp() {
  parent::setUp();
  $this->phpcsFile = $this
    ->getMockBuilder('\\PHP_CodeSniffer\\Files\\File')
    ->disableOriginalConstructor()
    ->getMock();
}