OSDN Git Service

APIの変更にともなってテストケースを修正
[ethna/ethna.git] / test / Ethna_MocktestManager.php
1 <?php
2 /**
3  *  Ethna_MocktestManager.php
4  *
5  *  @author     Yoshinari Takaoka <takaoka@beatcraft.com> 
6  *  @package    Ethna 
7  *  @version    $Id$
8  */
9
10 /**
11  *  Ethna_MocktestManager
12  *  アプリケーションマネージャーテスト用のダミークラス
13  */
14 class Ethna_MocktestManager extends Ethna_AppManager
15 {
16     //  何も定義しない 
17 }
18
19 /**
20  *  Ethna_Mocktest
21  *  アプリケーションオブジェクトテスト用のダミークラス
22  */
23 class Ethna_Mocktest extends Ethna_AppObject
24 {
25     /**
26      *  property display name getter.
27      *
28      *  @access public
29      */
30     function getName($key)
31     {
32         return $this->get($key);
33     }
34 }
35
36 ?>