Source for file UnitTest.php

Documentation is available at UnitTest.php

  1. <?php
  2. /**
  3.  *  UnitTest.php
  4.  *
  5.  *  @author     Takuya Ookubo <sfio@sakura.ai.to>
  6.  *  @license    http://www.opensource.org/licenses/bsd-license.php The BSD License
  7.  *  @package    Ethna
  8.  *  @version    $Id: d573874c5b0405fe04082c1ba11428dd64573114 $
  9.  */
  10.  
  11. /**
  12.  *  __ethna_unittest__フォームの実装
  13.  *
  14.  *  @author     Takuya Ookubo <sfio@sakura.ai.to>
  15.  *  @access     public
  16.  *  @package    Ethna
  17.  */
  18. {
  19.     /**
  20.      *  @access private
  21.      *  @var    array   フォーム値定義
  22.      */
  23.     var $form = array(
  24.     );
  25. }
  26.  
  27. /**
  28.  *  __ethna_unittest__アクションの実装
  29.  *
  30.  *  @author     Takuya Ookubo <sfio@sakura.ai.to>
  31.  *  @access     public
  32.  *  @package    Ethna
  33.  */
  34. {
  35.     /**
  36.      *  __ethna_unittest__アクションの前処理
  37.      *
  38.      *  @access public
  39.      *  @return string      Forward先(正常終了ならnull)
  40.      */
  41.     function prepare()
  42.     {
  43.         return null;
  44.     }
  45.  
  46.     /**
  47.      *  __ethna_unittest__アクションの実装
  48.      *
  49.      *  @access public
  50.      *  @return string  遷移名
  51.      */
  52.     function perform()
  53.     {
  54.         return '__ethna_unittest__';
  55.     }
  56. }

Documentation generated on Fri, 11 Nov 2011 03:59:09 +0900 by phpDocumentor 1.4.3