getSourceDirectory() public method

Get the source directory of the source code to be mutated
public getSourceDirectory ( ) : string
return string
Exemplo n.º 1
0
 public function testShouldStoreSourceDirectoryValue()
 {
     $generator = new Generator();
     $generator->setSourceDirectory($this->root . '/library');
     $this->assertEquals($this->root . '/library', $generator->getSourceDirectory());
 }