Example #1
0
 /**
  * This method is called before each cest class test method
  *
  * @param AcceptanceTester $I
  */
 public function _before($I)
 {
     $postTypeFixture = new PostTypeFixture();
     $postTypeFixture->load();
     $taxonomyFixture = new TaxonomyFixture();
     $taxonomyFixture->load();
     $postTypeTaxonomyFixture = new PostTypeTaxonomyFixture();
     $postTypeTaxonomyFixture->load();
     $termFixture = new TermFixture();
     $termFixture->load();
     $postFixture = new PostFixture();
     $postFixture->load();
     $termRelationshipFixture = new TermRelationshipFixture();
     $termRelationshipFixture->load();
     $postCommentFixture = new PostCommentFixture();
     $postCommentFixture->load();
 }
Example #2
0
 /**
  * Load needed fixtures
  */
 protected function loadFixtures()
 {
     $postTypeFixture = new PostTypeFixture();
     $postTypeFixture->load();
     $taxonomyFixture = new TaxonomyFixture();
     $taxonomyFixture->load();
     $postTypeTaxonomyFixture = new PostTypeTaxonomyFixture();
     $postTypeTaxonomyFixture->load();
     $termFixture = new TermFixture();
     $termFixture->load();
     $postFixture = new PostFixture();
     $postFixture->load();
     $termRelationshipFixture = new TermRelationshipFixture();
     $termRelationshipFixture->load();
     $postCommentFixture = new PostCommentFixture();
     $postCommentFixture->load();
 }
 /**
  * @inheritdoc
  */
 public function fixtures()
 {
     return ['user' => ['class' => UserFixture::className(), 'dataFile' => '@tests/codeception/common/fixtures/data/init_login.php'], 'post' => ['class' => PostFixture::className()]];
 }