コード例 #1
0
ファイル: priceTest.php プロジェクト: Crease29/oxideshop_ce
 /**
  * Tear down the fixture.
  */
 protected function tearDown()
 {
     parent::tearDown();
 }
コード例 #2
0
ファイル: basketTest.php プロジェクト: Crease29/oxideshop_ce
 /**
  * Tear down the fixture.
  */
 protected function tearDown()
 {
     $this->addTableForCleanup('oxobject2category');
     parent::tearDown();
 }
コード例 #3
0
 /**
  * Truncate tables so counter reset to zero.
  *
  * @see OxidTestCase::tearDown()
  */
 protected function tearDown()
 {
     oxDb::getDb()->execute('TRUNCATE TABLE `oxorder`');
     oxDb::getDb()->execute('TRUNCATE TABLE `oxcounters`');
     parent::tearDown();
 }
コード例 #4
0
ファイル: orderTest.php プロジェクト: Crease29/oxideshop_ce
 /**
  * Initialize the fixture.
  */
 protected function setUp()
 {
     parent::setUp();
     $this->reset();
 }