Index: tests/phpunit/includes/factory/class-wp-unittest-factory.php
===================================================================
--- tests/phpunit/includes/factory/class-wp-unittest-factory.php	(revision 36407)
+++ tests/phpunit/includes/factory/class-wp-unittest-factory.php	(working copy)
@@ -1,16 +1,5 @@
 <?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' );
-
 class WP_UnitTest_Factory {
 
 	/**
Index: tests/phpunit/includes/factory.php
===================================================================
--- tests/phpunit/includes/factory.php	(revision 36407)
+++ tests/phpunit/includes/factory.php	(working copy)
@@ -10,65 +10,4 @@
 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' );
-
-class WP_UnitTest_Factory {
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Post
-	 */
-	public $post;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Attachment
-	 */
-	public $attachment;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Comment
-	 */
-	public $comment;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_User
-	 */
-	public $user;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Term
-	 */
-	public $term;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Term
-	 */
-	public $category;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Term
-	 */
-	public $tag;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Blog
-	 */
-	public $blog;
-
-	/**
-	 * @var WP_UnitTest_Factory_For_Network
-	 */
-	public $network;
-
-	function __construct() {
-		$this->post = new WP_UnitTest_Factory_For_Post( $this );
-		$this->attachment = new WP_UnitTest_Factory_For_Attachment( $this );
-		$this->comment = new WP_UnitTest_Factory_For_Comment( $this );
-		$this->user = new WP_UnitTest_Factory_For_User( $this );
-		$this->term = new WP_UnitTest_Factory_For_Term( $this );
-		$this->category = new WP_UnitTest_Factory_For_Term( $this, 'category' );
-		$this->tag = new WP_UnitTest_Factory_For_Term( $this, 'post_tag' );
-		if ( is_multisite() ) {
-			$this->blog = new WP_UnitTest_Factory_For_Blog( $this );
-			$this->network = new WP_UnitTest_Factory_For_Network( $this );
-		}
-	}
-}
+require_once( dirname( __FILE__ ) . '/factory/class-wp-unittest-factory.php' );
