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/test/class/page/LC_Page_Test.php

    r22206 r22567  
    3333 * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $ 
    3434 */ 
    35 class LC_Page_Test extends PHPUnit_Framework_TestCase { 
     35class LC_Page_Test extends PHPUnit_Framework_TestCase  
     36{ 
    3637 
    3738    // }}} 
     
    4748     */ 
    4849    /* 
    49     function testSendRedirect() { 
     50    function testSendRedirect() 
     51    { 
    5052        $objPage = new LC_Page(); 
    5153        $result = $objPage->sendRedirect(HTTP_URL); 
     
    5860     */ 
    5961    /* 
    60     function testSendRedirectIsFailed() { 
     62    function testSendRedirectIsFailed() 
     63    { 
    6164        $objPage = new LC_Page(); 
    6265        $result = $objPage->sendRedirect("http://www.example.org"); 
     
    6972     * LC_Page::getToken() のテストケース. 
    7073     */ 
    71     function testGetToken() { 
     74    function testGetToken() 
     75    { 
    7276        $objPage = new LC_Page(); 
    7377 
     
    8589     * LC_Page::getLocation() のテストケース. 
    8690     */ 
    87     function testGetLocation() { 
     91    function testGetLocation() 
     92    { 
    8893        $objPage = new LC_Page(); 
    8994        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    99104     * 絶対パス 
    100105     */ 
    101     function testGetLocationWithFullPath() { 
     106    function testGetLocationWithFullPath() 
     107    { 
    102108        $objPage = new LC_Page(); 
    103109        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    113119     * QueryString 付与 
    114120     */ 
    115     function testGetLocationWithQueryString() { 
     121    function testGetLocationWithQueryString() 
     122    { 
    116123        $objPage = new LC_Page(); 
    117124        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    129136     * HTTPS_URL 使用 
    130137     */ 
    131     function testGetLocationUseSSL() { 
     138    function testGetLocationUseSSL() 
     139    { 
    132140        $objPage = new LC_Page(); 
    133141        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    145153     * DocumentRoot 指定 
    146154     */ 
    147     function testGetLocationWithDocumentRoot() { 
     155    function testGetLocationWithDocumentRoot() 
     156    { 
    148157        $objPage = new LC_Page(); 
    149158        $documentRoot = realpath(dirname(__FILE__) . "/../../../html"); 
Note: See TracChangeset for help on using the changeset viewer.