It's now only generated if something to put in it is specified via: %pragma(php) include=... or %pragma(php) code=...
8 lines
177 B
PHP
8 lines
177 B
PHP
<?
|
|
|
|
require "tests.php";
|
|
|
|
$fail = new SimpleClassFail();
|
|
$work = new SimpleClassWork();
|
|
|
|
check::equal($work->getInner()->get(), $fail->getInner()->get(), "should both be 10");
|