mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Unit Tests: after [35225], make factory a method/getter on WP_UnitTestCase and add magic methods for BC for every plugin that is extending WP_UnitTestCase and accessing the $factory instance prop.
Props nerrad, wonderboymusic. See #30017, #33968. git-svn-id: https://develop.svn.wordpress.org/trunk@35242 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -6,15 +6,15 @@
|
||||
*/
|
||||
class Tests_Admin_IncludesComment extends WP_UnitTestCase {
|
||||
public function test_must_match_date_and_author() {
|
||||
$p1 = self::$factory->post->create();
|
||||
$c1 = self::$factory->comment->create( array(
|
||||
$p1 = self::factory()->post->create();
|
||||
$c1 = self::factory()->comment->create( array(
|
||||
'comment_author' => 1,
|
||||
'comment_date' => '2014-05-06 12:00:00',
|
||||
'comment_post_ID' => $p1,
|
||||
) );
|
||||
|
||||
$p2 = self::$factory->post->create();
|
||||
$c2 = self::$factory->comment->create( array(
|
||||
$p2 = self::factory()->post->create();
|
||||
$c2 = self::factory()->comment->create( array(
|
||||
'comment_author' => 2,
|
||||
'comment_date' => '2004-01-02 12:00:00',
|
||||
'comment_post_ID' => $p2,
|
||||
@@ -28,8 +28,8 @@ class Tests_Admin_IncludesComment extends WP_UnitTestCase {
|
||||
* @ticket 33871
|
||||
*/
|
||||
public function test_default_value_of_timezone_should_be_blog() {
|
||||
$p = self::$factory->post->create();
|
||||
$c = self::$factory->comment->create( array(
|
||||
$p = self::factory()->post->create();
|
||||
$c = self::factory()->comment->create( array(
|
||||
'comment_author' => 1,
|
||||
'comment_post_ID' => $p,
|
||||
'comment_date' => '2014-05-06 12:00:00',
|
||||
@@ -43,8 +43,8 @@ class Tests_Admin_IncludesComment extends WP_UnitTestCase {
|
||||
* @ticket 33871
|
||||
*/
|
||||
public function test_should_respect_timezone_blog() {
|
||||
$p = self::$factory->post->create();
|
||||
$c = self::$factory->comment->create( array(
|
||||
$p = self::factory()->post->create();
|
||||
$c = self::factory()->comment->create( array(
|
||||
'comment_author' => 1,
|
||||
'comment_post_ID' => $p,
|
||||
'comment_date' => '2014-05-06 12:00:00',
|
||||
@@ -58,8 +58,8 @@ class Tests_Admin_IncludesComment extends WP_UnitTestCase {
|
||||
* @ticket 33871
|
||||
*/
|
||||
public function test_should_respect_timezone_gmt() {
|
||||
$p = self::$factory->post->create();
|
||||
$c = self::$factory->comment->create( array(
|
||||
$p = self::factory()->post->create();
|
||||
$c = self::factory()->comment->create( array(
|
||||
'comment_author' => 1,
|
||||
'comment_post_ID' => $p,
|
||||
'comment_date' => '2014-05-06 12:00:00',
|
||||
@@ -73,8 +73,8 @@ class Tests_Admin_IncludesComment extends WP_UnitTestCase {
|
||||
* @ticket 33871
|
||||
*/
|
||||
public function test_invalid_timezone_should_fall_back_on_blog() {
|
||||
$p = self::$factory->post->create();
|
||||
$c = self::$factory->comment->create( array(
|
||||
$p = self::factory()->post->create();
|
||||
$c = self::factory()->comment->create( array(
|
||||
'comment_author' => 1,
|
||||
'comment_post_ID' => $p,
|
||||
'comment_date' => '2014-05-06 12:00:00',
|
||||
|
||||
Reference in New Issue
Block a user