Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/test/class/page/LC_Page_Test.php

    r22567 r22796  
    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  
    36 { 
     35class LC_Page_Test extends PHPUnit_Framework_TestCase { 
    3736 
    3837    // }}} 
     
    4847     */ 
    4948    /* 
    50     function testSendRedirect() 
    51     { 
     49    function testSendRedirect() { 
    5250        $objPage = new LC_Page(); 
    5351        $result = $objPage->sendRedirect(HTTP_URL); 
     
    6058     */ 
    6159    /* 
    62     function testSendRedirectIsFailed() 
    63     { 
     60    function testSendRedirectIsFailed() { 
    6461        $objPage = new LC_Page(); 
    6562        $result = $objPage->sendRedirect("http://www.example.org"); 
     
    7269     * LC_Page::getToken() のテストケース. 
    7370     */ 
    74     function testGetToken() 
    75     { 
     71    function testGetToken() { 
    7672        $objPage = new LC_Page(); 
    7773 
     
    8985     * LC_Page::getLocation() のテストケース. 
    9086     */ 
    91     function testGetLocation() 
    92     { 
     87    function testGetLocation() { 
    9388        $objPage = new LC_Page(); 
    9489        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    10499     * 絶対パス 
    105100     */ 
    106     function testGetLocationWithFullPath() 
    107     { 
     101    function testGetLocationWithFullPath() { 
    108102        $objPage = new LC_Page(); 
    109103        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    119113     * QueryString 付与 
    120114     */ 
    121     function testGetLocationWithQueryString() 
    122     { 
     115    function testGetLocationWithQueryString() { 
    123116        $objPage = new LC_Page(); 
    124117        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    136129     * HTTPS_URL 使用 
    137130     */ 
    138     function testGetLocationUseSSL() 
    139     { 
     131    function testGetLocationUseSSL() { 
    140132        $objPage = new LC_Page(); 
    141133        $_SERVER['DOCUMENT_ROOT'] = realpath(dirname(__FILE__) . "/../../../html"); 
     
    153145     * DocumentRoot 指定 
    154146     */ 
    155     function testGetLocationWithDocumentRoot() 
    156     { 
     147    function testGetLocationWithDocumentRoot() { 
    157148        $objPage = new LC_Page(); 
    158149        $documentRoot = realpath(dirname(__FILE__) . "/../../../html"); 
Note: See TracChangeset for help on using the changeset viewer.