Eccube\Tests\Plugin\Web\AbstractWebTestCase::tearDown PHP Method

tearDown() public method

public tearDown ( )
    public function tearDown()
    {
        $to = __DIR__ . '/../../../../../app/Plugin/HookPoint';
        // テスト用プラグインを削除.
        $fs = new Filesystem();
        $fs->remove($to);
        parent::tearDown();
        $this->client = null;
    }

Usage Example

Exemplo n.º 1
0
 public function tearDown()
 {
     $this->cleanUpMailCatcherMessages();
     parent::tearDown();
 }