tearDown() публичный Метод

public tearDown ( ) : null
Результат null
Пример #1
0
 public function testTearDownRemovesFile()
 {
     $e = new FilteredLs($this->filesystem);
     $args = $e->getArgs();
     $path = $args[0];
     $this->assertFileExists($path);
     $e->tearDown();
     $this->assertFileNotExists($path);
 }