Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/tests/class/SC_Product/SC_Product_getBuyLimitTest.php

    r22192 r22567  
    66 * 
    77 */ 
    8 class SC_Product_getBuyLimitTest extends SC_Product_TestBase { 
     8class SC_Product_getBuyLimitTest extends SC_Product_TestBase 
     9{ 
    910 
    10     protected function setUp() { 
     11    protected function setUp() 
     12    { 
    1113        parent::setUp(); 
    1214        $this->objProducts = new SC_Product_Ex(); 
    1315    } 
    1416 
    15     protected function tearDown() { 
     17    protected function tearDown() 
     18    { 
    1619        parent::tearDown(); 
    1720    } 
     
    1922    ///////////////////////////////////////// 
    2023 
    21     public function testGetBuyLimit_商品数無限の場合販売制限なし() { 
     24    public function testGetBuyLimit_商品数無限の場合販売制限なし() 
     25    { 
    2226         
    2327        $product = array('stock_unlimited' => '1' 
     
    3034    } 
    3135     
    32     public function testGetBuyLimit_商品販売数制限数を返す() { 
     36    public function testGetBuyLimit_商品販売数制限数を返す() 
     37    { 
    3338         
    3439        $product = array('stock_unlimited' => '1' 
     
    4146    } 
    4247     
    43     public function testGetBuyLimit_商品在庫数を制限として返す() { 
     48    public function testGetBuyLimit_商品在庫数を制限として返す() 
     49    { 
    4450         
    4551        $product = array('stock_unlimited' => null 
     
    5258    } 
    5359 
    54     public function testGetBuyLimit_販売制限数大なり在庫数なら在庫数を返す() { 
     60    public function testGetBuyLimit_販売制限数大なり在庫数なら在庫数を返す() 
     61    { 
    5562         
    5663        $product = array('stock_unlimited' => null 
     
    6370    } 
    6471     
    65     public function testGetBuyLimit_販売制限数少なり在庫数なら販売制限数() { 
     72    public function testGetBuyLimit_販売制限数少なり在庫数なら販売制限数() 
     73    { 
    6674         
    6775        $product = array('stock_unlimited' => null 
Note: See TracChangeset for help on using the changeset viewer.