8d562e0d04
In [36347] we moved all PHP factory classes into their own files except the main class. The main class is now in its own file, and `factory.php` is solely an include manifest for all factory classes. git-svn-id: https://develop.svn.wordpress.org/trunk@36409 602fd350-edb4-49c9-b593-d223f7449a82
14 lines
1005 B
PHP
14 lines
1005 B
PHP
<?php
|
|
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-thing.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-post.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-attachment.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-user.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-comment.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-blog.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-network.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-for-term.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-generator-sequence.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory-callback-after-create.php' );
|
|
require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory.php' );
|