Zephir\Test\ConfigTest::tearDown PHP Method

tearDown() public method

Restore current directory, and clean config.json.
public tearDown ( )
    public function tearDown()
    {
        if (getcwd() != $this->pwd) {
            chdir($this->pwd);
        }
        $this->cleanTmpConfigFile();
    }