Ignore:
Timestamp:
2013/02/18 19:09:54 (13 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/test/class/db/SC_DB_MasterData_Test.php

    r22206 r22567  
    3333 * @version $Id:SC_DB_MasterData_Test.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3434 */ 
    35 class SC_DB_MasterData_Test extends PHPUnit_Framework_TestCase { 
     35class SC_DB_MasterData_Test extends PHPUnit_Framework_TestCase  
     36{ 
    3637 
    3738    // }}} 
     
    4142     * SC_DB_MasterData::getMasterData() のテストケース 
    4243     */ 
    43     function testGetMasterData() { 
     44    function testGetMasterData() 
     45    { 
    4446        $columns = array('id', 'name', 'rank'); 
    4547        $masterData = new SC_DB_MasterData_Ex(); 
     
    6163     * SC_DB_MasterData::updateMasterData() のテストケース 
    6264     */ 
    63     function testUpdateMasterData() { 
     65    function testUpdateMasterData() 
     66    { 
    6467 
    6568        $columns = array('id', 'name', 'rank'); 
     
    8689     * SC_DB_MasterData::createCache() のテストケース. 
    8790     */ 
    88     function testCreateCache() { 
     91    function testCreateCache() 
     92    { 
    8993        $masterData = new SC_DB_MasterData_Ex(); 
    9094        $masterData->clearCache('mtb_constants'); 
Note: See TracChangeset for help on using the changeset viewer.