Tests: Move some utility classes to their own files.

Props Frank Klein.
Fixes #37523.


git-svn-id: https://develop.svn.wordpress.org/trunk@38285 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Boone Gorges 2016-08-19 15:44:37 +00:00
parent f3425a50ac
commit ba9eda1a9b
4 changed files with 37 additions and 31 deletions

View File

@ -0,0 +1,29 @@
<?php
class Basic_Object {
private $foo = 'bar';
public function __get( $name ) {
return $this->$name;
}
public function __set( $name, $value ) {
return $this->$name = $value;
}
public function __isset( $name ) {
return isset( $this->$name );
}
public function __unset( $name ) {
unset( $this->$name );
}
public function __call( $name, $arguments ) {
return call_user_func_array( array( $this, $name ), $arguments );
}
private function callMe() {
return 'maybe';
}
}

View File

@ -0,0 +1,3 @@
<?php
class Basic_Subclass extends Basic_Object {}

View File

@ -58,36 +58,6 @@ function _delete_all_posts() {
}
}
class Basic_Object {
private $foo = 'bar';
public function __get( $name ) {
return $this->$name;
}
public function __set( $name, $value ) {
return $this->$name = $value;
}
public function __isset( $name ) {
return isset( $this->$name );
}
public function __unset( $name ) {
unset( $this->$name );
}
public function __call( $name, $arguments ) {
return call_user_func_array( array( $this, $name ), $arguments );
}
private function callMe() {
return 'maybe';
}
}
class Basic_Subclass extends Basic_Object {}
function _wp_die_handler( $message, $title = '', $args = array() ) {
if ( !$GLOBALS['_wp_die_disabled'] ) {
_wp_die_handler_txt( $message, $title, $args);
@ -147,7 +117,7 @@ function _upload_dir_no_subdir( $uploads ) {
/**
* Helper used with the `upload_dir` filter to set https upload URL.
*/
*/
function _upload_dir_https( $uploads ) {
$uploads['url'] = str_replace( 'http://', 'https://', $uploads['url'] );
$uploads['baseurl'] = str_replace( 'http://', 'https://', $uploads['baseurl'] );

View File

@ -1,4 +1,8 @@
<?php
require_once dirname( dirname( __FILE__ ) ) . '/includes/class-basic-object.php';
require_once dirname( dirname( __FILE__ ) ) . '/includes/class-basic-subclass.php';
/**
* just make sure the test framework is working
*