public function testRankUp_指定されたデータがランクアップされる()
 {
     SC_Helper_BestProducts_Ex::rankUp("1003");
     $this->expected = "2";
     $arrRet = SC_Helper_BestProducts_Ex::getBestProducts('1003');
     $this->actual = $arrRet['rank'];
     $this->verify();
 }
 public function testRankUp_指定されたデータがランクアップされる()
 {
     $objRecommend = new SC_Helper_BestProducts_Ex();
     $objRecommend->rankUp("1003");
     $this->expected = "2";
     $arrRet = $objRecommend->getBestProducts('1003');
     $this->actual = $arrRet['rank'];
     $this->verify();
 }