Ignore:
Timestamp:
2013/03/10 12:00:17 (11 years ago)
Author:
hiro151
Message:

#2183 SC_Helper_BestProductsを拡張クラスを使うよう修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_13-tests/tests/class/helper/SC_Helper_BestProducts/SC_Helper_BestProducts_deleteBestProductsTest.php

    r22689 r22719  
    4747    public function testDeleteBestProducts_データが削除される(){ 
    4848 
    49         SC_Helper_BestProducts::deleteBestProducts("1001"); 
     49        SC_Helper_BestProducts_Ex::deleteBestProducts("1001"); 
    5050 
    5151        $this->expected = null; 
    5252 
    53         $this->actual = SC_Helper_BestProducts::getBestProducts('1001'); 
     53        $this->actual = SC_Helper_BestProducts_Ex::getBestProducts('1001'); 
    5454 
    5555        $this->verify(); 
     
    5959    public function testDeleteBestProducts_データ削除後_ランクが繰り上がることを確認(){ 
    6060 
    61         SC_Helper_BestProducts::deleteBestProducts("1001"); 
     61        SC_Helper_BestProducts_Ex::deleteBestProducts("1001"); 
    6262 
    6363        $this->expected = "1"; 
    6464 
    65         $arrRet = SC_Helper_BestProducts::getBestProducts('1002',true); 
     65        $arrRet = SC_Helper_BestProducts_Ex::getBestProducts('1002',true); 
    6666 
    6767        $this->actual = $arrRet['rank']; 
Note: See TracChangeset for help on using the changeset viewer.