Example #1
0
 /**
  * @covers ::makeFile
  */
 public function testMakeFile()
 {
     $project = new Project(array(), array(), false);
     $file = $project->makeFile('fileName', 'the code');
     $this->assertInstanceOf('MaartenStaa\\PHPTA\\Processors\\File', $file);
     $this->assertEquals('fileName', $file->getFileName());
     $this->assertEquals('the code', $file->getCode());
 }