OSDN Git Service

3879a94fbe763966b7d4a8529e9cc2d9c99f28dd
[ethna/ethna.git] / class / Action / Ethna_Action_UnitTest.php
1 <?php
2 /**
3  *  Ethna_Action_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$
9  */
10
11 /**
12  *  __ethna_unittest__¥Õ¥©¡¼¥à¤Î¼ÂÁõ
13  *
14  *  @author     Takuya Ookubo <sfio@sakura.ai.to>
15  *  @access     public
16  *  @package    Ethna
17  */
18 class Ethna_Form_UnitTest extends Ethna_ActionForm
19 {
20     /**
21      *  @access private
22      *  @var    array   ¥Õ¥©¡¼¥àÃÍÄêµÁ
23      */
24     var $form = array(
25     );
26 }
27
28 /**
29  *  __ethna_unittest__¥¢¥¯¥·¥ç¥ó¤Î¼ÂÁõ
30  *
31  *  @author     Takuya Ookubo <sfio@sakura.ai.to>
32  *  @access     public
33  *  @package    Ethna
34  */
35 class Ethna_Action_UnitTest extends Ethna_ActionClass
36 {
37     /**
38      *  __ethna_unittest__¥¢¥¯¥·¥ç¥ó¤ÎÁ°½èÍý
39      *
40      *  @access public
41      *  @return string      ForwardÀè(Àµ¾ï½ªÎ»¤Ê¤énull)
42      */
43     function prepare()
44     {
45         return null;
46     }
47
48     /**
49      *  __ethna_unittest__¥¢¥¯¥·¥ç¥ó¤Î¼ÂÁõ
50      *
51      *  @access public
52      *  @return string  Á«°Ü̾
53      */
54     function perform()
55     {
56         return '__ethna_unittest__';
57     }
58 }
59 ?>