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/util/SC_Utils/SC_Utils_sfGetAddressTest.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfGetAddressTest extends Common_TestCase { 
     34class SC_Utils_sfGetAddressTest extends Common_TestCase 
     35{ 
    3536 
    3637 
    37   protected function setUp() { 
     38  protected function setUp() 
     39  { 
    3840    parent::setUp(); 
    3941    $this->setUpAddress(); 
    4042  } 
    4143 
    42   protected function tearDown() { 
     44  protected function tearDown() 
     45  { 
    4346    parent::tearDown(); 
    4447  } 
    4548 
    4649  ///////////////////////////////////////// 
    47   public function test_住所がヒットしない場合_空の配列が返る() { 
     50  public function test_住所がヒットしない場合_空の配列が返る() 
     51  { 
    4852    $this->expected = array(); 
    4953    $this->actual = SC_Utils::sfGetAddress('9999999'); 
     
    5256  } 
    5357 
    54   public function test_住所が一件だけヒットする場合_住所データが取得できる() { 
     58  public function test_住所が一件だけヒットする場合_住所データが取得できる() 
     59  { 
    5560    $this->expected = array( 
    5661      array( 
     
    6974  // $data_list[0]を返した方が良いのでは? 
    7075  /** 
    71   public function test_住所が二件以上ヒットする場合_町名を消した住所データが取得できる() { 
     76  public function test_住所が二件以上ヒットする場合_町名を消した住所データが取得できる() 
     77  { 
    7278    $this->expected = array( 
    7379      array( 
     
    8894  */ 
    8995 
    90   public function test_住所に但し書きが含まれる場合_但し書きが消去される() { 
     96  public function test_住所に但し書きが含まれる場合_但し書きが消去される() 
     97  { 
    9198    $this->expected = array( 
    9299      array( 
     
    101108  } 
    102109 
    103   public function test_住所に注意文言がある場合_町名が消去される() { 
     110  public function test_住所に注意文言がある場合_町名が消去される() 
     111  { 
    104112    $this->expected = array( 
    105113      array( 
     
    114122  } 
    115123 
    116   public function test_住所に番地の説明が含まれる場合_町名が消去される() { 
     124  public function test_住所に番地の説明が含まれる場合_町名が消去される() 
     125  { 
    117126    $this->expected = array( 
    118127      array( 
     
    129138  ////////////////////////////////////////// 
    130139 
    131   protected function setUpAddress() { 
     140  protected function setUpAddress() 
     141  { 
    132142 
    133143    $address = array( 
Note: See TracChangeset for help on using the changeset viewer.