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

#2183 テストfunction名の修正

Location:
branches/camp/camp-2_13-tests/tests/class/helper/SC_Helper_BestProducts
Files:
3 edited

Legend:

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

    r22656 r22660  
    4545    /** best_idが存在しない場合、空を返す。 
    4646     */ 
    47     public function testGetBestProducts_おすすめidが存在しない場合空を返す() 
     47    public function testGetBestProducts_おすすめidが存在しない場合_空を返す() 
    4848    { 
    4949        $best_id = '9999'; 
     
    5656 
    5757    // best_idが存在する場合、対応した結果を取得できる。 
    58     public function testGetBestProducts_おすすめIDが存在する場合対応した結果を取得できる(){ 
     58    public function testGetBestProducts_おすすめIDが存在する場合_対応した結果を取得できる(){ 
    5959 
    6060        $best_id = '1001'; 
     
    8484 
    8585    // best_idが存在するが、del_flg=1の場合、空が帰る。 
    86     public function testGetBestProducts_おすすめIDがあり、かつ削除済みの場合、空が返る(){ 
     86    public function testGetBestProducts_おすすめIDがあり_かつ削除済みの場合_空が返る(){ 
    8787 
    8888        $best_id = '1002'; 
     
    9696 
    9797    // best_idが存在するが、del_flg=1の場合、かつ。$has_deleted=trueを指定 
    98     public function testGetBestProducts_削除済みでかつhas_deletedがtrueの場合対応した結果が返る(){ 
     98    public function testGetBestProducts_削除済みでかつhas_deletedがtrueの場合_対応した結果が返る(){ 
    9999 
    100100        $best_id = '1002'; 
  • branches/camp/camp-2_13-tests/tests/class/helper/SC_Helper_BestProducts/SC_Helper_BestProducts_getByRankTest.php

    r22656 r22660  
    4545    /** rankが存在しない場合、空を返す。 
    4646     */ 
    47     public function testGetByRank_ランクが存在しない場合空を返す() 
     47    public function testGetByRank_ランクが存在しない場合_空を返す() 
    4848    { 
    4949        $rank = '9999'; 
     
    5656 
    5757    // $rankが存在する場合、対応した結果を取得できる。 
    58     public function testGetByRank_ランクが存在する場合対応した結果を取得できる(){ 
     58    public function testGetByRank_ランクが存在する場合_対応した結果を取得できる(){ 
    5959 
    6060        $rank = '1'; 
     
    8484 
    8585    // rankが存在するが、del_flg=1の場合、空が帰る。 
    86     public function testGetByRank_ランクが存在かつ、削除の場合、空が返る(){ 
     86    public function testGetByRank_ランクが存在かつ_削除の場合_空が返る(){ 
    8787 
    8888        $rank = '2'; 
     
    9696 
    9797    // rankが存在するが、del_flg=1の場合、かつ。$has_deleted=trueを指定 
    98     public function testGetByRank_ランクが存在かつ、has_deletedの場合、対応した結果が返る(){ 
     98    public function testGetByRank_ランクが存在かつ_has_deletedの場合_対応した結果が返る(){ 
    9999 
    100100        $rank = '2'; 
  • branches/camp/camp-2_13-tests/tests/class/helper/SC_Helper_BestProducts/SC_Helper_BestProducts_getListTest.php

    r22656 r22660  
    5656    } 
    5757 
    58     public function testGetList_データがある場合想定した結果が返る(){ 
     58    public function testGetList_データがある場合_想定した結果が返る(){ 
    5959 
    6060        $this->setUpBestProducts(); 
     
    148148 
    149149 
    150     public function testGetList_ページングが想定した結果が返る12(){ 
     150    public function testGetList_ページングが想定した結果が返る_表示件数1_ページ番号2(){ 
    151151 
    152152        $this->setUpBestProducts(); 
     
    174174 
    175175 
    176     public function testGetList_ページングが想定した結果が返る10(){ 
     176    public function testGetList_ページングが想定した結果が返る_表示件数1_ページ番号0(){ 
    177177 
    178178        $this->setUpBestProducts(); 
Note: See TracChangeset for help on using the changeset viewer.