Unit Tests: after [35242], declare some missing instance props on individual test classes.

See #30017, #33968.



git-svn-id: https://develop.svn.wordpress.org/trunk@35243 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2015-10-17 18:29:32 +00:00
parent b757b37551
commit ae226d66b6
3 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,8 @@
* @group upload
*/
class Tests_Image_Intermediate_Size extends WP_UnitTestCase {
protected $ids = array();
function tearDown() {
$this->remove_added_uploads();
parent::tearDown();

View File

@ -6,6 +6,7 @@
* @group upload
*/
class Tests_Post_Attachments extends WP_UnitTestCase {
protected $ids = array();
function tearDown() {
// Remove all uploads.

View File

@ -4,6 +4,8 @@
* @group post
*/
class Tests_Post_WpUniquePostSlug extends WP_UnitTestCase {
protected $post_ids = array();
/**
* @ticket 21013
*/