OSDN Git Service

Remove PHP closing tag
[ethna/ethna.git] / skel / app.unittest.php
1 <?php
2 /**
3  *  {$project_id}_UnitTestManager.php
4  *
5  *  @author     {$author}
6  *  @package    {$project_id}
7  *  @version    $Id$
8  */
9
10 /**
11  *  {$project_id} Unit Test Manager Class.
12  *
13  *  @author     {$author}
14  *  @access     public
15  *  @package    {$project_id}
16  */
17 class {$project_id}_UnitTestManager extends Ethna_UnitTestManager
18 {
19     /**
20      *  @var    array   General test case definition.
21      */
22     var $testcase = array(
23         /*
24          *  TODO: Write general test case definition here.
25          *
26          *  Example:
27          *
28          *  'util' => 'app/UtilTest.php',
29          */
30     );
31 }