It's now only generated if something to put in it is specified via: %pragma(php) include=... or %pragma(php) code=...
10 lines
200 B
PHP
10 lines
200 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
check::classes(array("extend_template_ns","Foo_One"));
|
|
$foo=new Foo_One();
|
|
check::equal(2,$foo->test1(2),"test1");
|
|
check::equal(3,$foo->test2(3),"test2");
|
|
|
|
check::done();
|