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_findProductCountTest.php

    r22192 r22567  
    66 * 
    77 */ 
    8 class SC_Product_findProductCountTest extends SC_Product_TestBase { 
     8class SC_Product_findProductCountTest 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 testFindProductCount_すべての商品数を返す() { 
     24    public function testFindProductCount_すべての商品数を返す() 
     25    { 
    2226        $this->setUpProductClass(); 
    2327        $this->setUpProducts(); 
     
    3135    } 
    3236     
    33     public function testFindProductCount_検索条件に一致する商品数を返す() { 
     37    public function testFindProductCount_検索条件に一致する商品数を返す() 
     38    { 
    3439        $this->setUpProductClass(); 
    3540        $this->setUpProducts(); 
Note: See TracChangeset for help on using the changeset viewer.