getArgs() public method

public getArgs ( ) : array
return array
 public function testTearDownRemovesFile()
 {
     $e = new FilteredLs($this->filesystem);
     $args = $e->getArgs();
     $path = $args[0];
     $this->assertFileExists($path);
     $e->tearDown();
     $this->assertFileNotExists($path);
 }