Make WordPress Core


Ignore:
Timestamp:
07/12/2014 07:08:15 AM (9 years ago)
Author:
wonderboymusic
Message:

Wouldn't it be incredible if you could run Unit Tests without all of your uploads being indiscriminately blown away and your upload folder permissions being destroyed?

The Future Is Now.

Fixes #28847.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/image/base.php

    r27794 r29120  
    1010     */
    1111    public function setUp() {
     12        parent::setUp();
     13
    1214        if ( ! call_user_func( array( $this->editor_engine, 'test' ) ) ) {
    1315            $this->markTestSkipped( sprintf('The image editor engine %s is not supported on this system', $this->editor_engine) );
     
    2123     */
    2224    public function tearDown() {
     25        parent::tearDown();
     26
    2327        remove_filter( 'wp_image_editors', array( $this, 'setEngine' ), 10, 2 );
    2428    }
     
    3438    /**
    3539     * Helper assertion for testing alpha on images
    36      * 
     40     *
    3741     * @param  string $image_path
    3842     * @param  array $point      array(x,y)
Note: See TracChangeset for help on using the changeset viewer.