예제 #1
0
파일: Profile.php 프로젝트: kingsj/core
 /**
  * setUp
  *
  * @return void
  * @access protected
  * @see    ____func_see____
  * @since  1.0.0
  */
 protected function setUp()
 {
     parent::setUp();
     \XLite\Core\Database::getEM()->clear();
     $this->doRestoreDb(__DIR__ . '/sql/profile/setup.sql', false);
     $this->testSearchData[22]['cnd']['startDate'] = date('M j, Y', time() - 60 * 60 * 24 * 7);
     $this->testSearchData[22]['cnd']['endDate'] = date('M j, Y', time() - 60 * 60 * 24 * 3);
 }
예제 #2
0
 protected function setUp()
 {
     parent::setUp();
     \XLite\Core\Database::getEM()->clear();
 }
예제 #3
0
파일: Category.php 프로젝트: kingsj/core
 /**
  * setUp
  *
  * @return void
  * @access protected
  * @see    ____func_see____
  * @since  1.0.0
  */
 protected function setUp()
 {
     parent::setUp();
     $this->doRestoreDb(__DIR__ . '/sql/category/setup.sql', false);
 }
예제 #4
0
파일: AProduct.php 프로젝트: kingsj/core
 /**
  * setUp
  *
  * @return void
  * @access protected
  * @see    ____func_see____
  * @since  1.0.0
  */
 protected function setUp()
 {
     parent::setUp();
     \XLite\Core\Database::getEM()->clear();
     $this->doRestoreDb(__DIR__ . '/Repo/sql/product/setup.sql', false);
 }
예제 #5
0
파일: Module.php 프로젝트: kingsj/core
 /**
  * setUp
  *
  * @return void
  * @see    ____func_see____
  * @since  1.0.0
  */
 protected function setUp()
 {
     parent::setUp();
     $this->doRestoreDb(__DIR__ . '/Repo/sql/module/setup.sql', false);
 }
예제 #6
0
파일: Image.php 프로젝트: kingsj/core
 protected function setUp()
 {
     parent::setUp();
     \XLite\Core\Database::getEM()->clear();
     \Includes\Utils\FileManager::unlinkRecursive(LC_DIR_IMAGES . 'product');
 }