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/helper/SC_Helper_Purchase/SC_Helper_Purchase_setDownloadableFlgToTest.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Helper_Purchase_setDownloadableFlgToTest extends SC_Helper_Purchase_TestBase { 
     34class SC_Helper_Purchase_setDownloadableFlgToTest extends SC_Helper_Purchase_TestBase 
     35{ 
    3536 
    3637 
    37   protected function setUp() { 
     38  protected function setUp() 
     39  { 
    3840    // parent::setUp(); 
    3941  } 
    4042 
    41   protected function tearDown() { 
     43  protected function tearDown() 
     44  { 
    4245    // parent::tearDown(); 
    4346  } 
    4447 
    4548  ///////////////////////////////////////// 
    46   public function testSetDownloadableFlgTo_販売価格が0円の場合_フラグがONになる() { 
     49  public function testSetDownloadableFlgTo_販売価格が0円の場合_フラグがONになる() 
     50  { 
    4751    $input = array( 
    4852      '1001' => array('price' => 0) 
     
    5660  } 
    5761 
    58   public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日ありの場合_フラグがONになる() { 
     62  public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日ありの場合_フラグがONになる() 
     63  { 
    5964    $input = array( 
    6065      '1001' => array('price' => 1000, 'effective' => '1', 'payment_date' => '2012-12-12') 
     
    6873  } 
    6974 
    70   public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日なしの場合_フラグがOFFになる() { 
     75  public function testSetDownloadableFlgTo_ダウンロード期限内かつ入金日なしの場合_フラグがOFFになる() 
     76  { 
    7177    $input = array( 
    7278      '1001' => array('price' => 1000, 'effective' => '1', 'payment_date' => null) 
     
    8086  } 
    8187 
    82   public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日ありの場合_フラグがOFFになる() { 
     88  public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日ありの場合_フラグがOFFになる() 
     89  { 
    8390    $input = array( 
    8491      '1001' => array('price' => 1000, 'effective' => '0', 'payment_date' => '2012-12-12') 
     
    9299  } 
    93100 
    94   public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日なしの場合_フラグがOFFになる() { 
     101  public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日なしの場合_フラグがOFFになる() 
     102  { 
    95103    $input = array( 
    96104      '1001' => array('price' => 1000, 'effective' => '0', 'payment_date' => null) 
Note: See TracChangeset for help on using the changeset viewer.