Make WordPress Core


Ignore:
Timestamp:
08/27/2016 08:35:16 AM (8 years ago)
Author:
wonderboymusic
Message:

Unit Tests:

  • Automatically delete objects that we were created during wpSetUpBeforeClass - posts, comments, terms (except 1), and user (except 1)
  • The amount of leftover data between tests was breathtaking - use the new function: _delete_all_data()
  • Commit database transactions for all TestCases, not just those that implement wpSetUpBeforeClass and wpTearDownAfterClass
  • The tests run 10-20 seconds faster now

See #37699.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/comment/getCommentLink.php

    r35933 r38398  
    4343        ) );
    4444
    45     }
    46 
    47     public static function wpTearDownAfterClass() {
    48         foreach ( self::$comments as $c ) {
    49             wp_delete_comment( $c, true );
    50         }
    51 
    52         wp_delete_post( self::$p, true );
    5345    }
    5446
Note: See TracChangeset for help on using the changeset viewer.