Changeset 23540
- Timestamp:
- 2014/06/11 11:27:45 (9 years ago)
- Location:
- branches/version-2_13-dev/tests/class
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/tests/class/SC_CartSession/SC_CartSession_TestBase.php
r23399 r23540 93 93 ); 94 94 95 $this->objQuery->delete('dtb_classcategory'); 95 // classcategory_id=0のものは削除しない 96 $this->objQuery->delete('dtb_classcategory', 'classcategory_id <> 0'); 96 97 foreach ($class_category as $key => $item) { 97 98 $this->objQuery->insert('dtb_classcategory', $item); -
branches/version-2_13-dev/tests/class/SC_Product/SC_Product_TestBase.php
r22567 r23540 93 93 ); 94 94 95 $this->objQuery->delete('dtb_classcategory'); 95 // classcategory_id=0のものは削除しない 96 $this->objQuery->delete('dtb_classcategory', 'classcategory_id <> 0'); 96 97 foreach ($class_category as $key => $item) { 97 98 $this->objQuery->insert('dtb_classcategory', $item); -
branches/version-2_13-dev/tests/class/SC_Product/SC_Product_getProductsClassByProductIdsTest.php
r22567 r23540 125 125 ,'down_realfilename' => null 126 126 ,'classcategory_name1' => null 127 ,'rank1' => null127 ,'rank1' => 0 128 128 ,'class_name1' => null 129 129 ,'class_id1' => null … … 131 131 ,'classcategory_id2' => '0' 132 132 ,'classcategory_name2' => null 133 ,'rank2' => null133 ,'rank2' => 0 134 134 ,'class_name2' => null 135 135 ,'class_id2' => null -
branches/version-2_13-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php
r23356 r23540 212 212 ); 213 213 214 $this->objQuery->delete('dtb_classcategory'); 214 // classcategory_id=0のものは削除しない 215 $this->objQuery->delete('dtb_classcategory', 'classcategory_id <> 0'); 215 216 foreach ($class_category as $key => $item) { 216 217 $this->objQuery->insert('dtb_classcategory', $item); -
branches/version-2_13-dev/tests/class/util/SC_Utils/SC_Utils_sfGetClassCatCountTest.php
r22567 r23540 128 128 ) 129 129 ); 130 $this->objQuery->delete('dtb_classcategory'); 130 // classcategory_id=0のものは削除しない 131 $this->objQuery->delete('dtb_classcategory', 'classcategory_id <> 0'); 131 132 foreach ($class_categories as $item) { 132 133 $this->objQuery->insert('dtb_classcategory', $item);
Note: See TracChangeset
for help on using the changeset viewer.