| [ Index ] |
PHP Cross Reference of Akelos Framework |
[Summary view] [Print] [Text view]
1 <?php echo "<?php"; ?> 2 3 4 require_once (AK_LIB_DIR.DS.'AkActionMailer.php'); 5 6 Ak::import('<?php echo $class_name; ?>'); 7 8 class <?php echo $class_name; ?>TestCase extends AkUnitTest 9 { 10 function setup() 11 { 12 $this-><?php echo $class_name; ?> =& new <?php echo $class_name; ?>(); 13 $this-><?php echo $class_name; ?>->delivery_method = 'test'; 14 $this->recipient = 'root@localhost'; 15 } 16 17 <?php foreach($actions as $action){ ?> 18 19 function test_<?php echo $action; ?>() 20 { 21 $this-><?php echo $class_name; ?>->create('<?php echo $action; ?>', $this->recipient); 22 } 23 24 <?php } ?> 25 26 } 27 28 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Oct 27 12:43:49 2008 | Cross-referenced by PHPXref 0.6 |