HM\BackUpWordPress\Test_Backup_Path::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        // We need to mess with the $is_apache global so let's back it up now
        global $is_apache;
        $this->is_apache = $is_apache;
        $this->path = Path::get_instance();
        $this->custom_path = wp_normalize_path(WP_CONTENT_DIR . '/custom');
        // Cleanup before we kickoff in-case theirs cruft around from previous failures
        $this->tearDown();
    }