It's now only generated if something to put in it is specified via: %pragma(php) include=... or %pragma(php) code=...
12 lines
343 B
PHP
12 lines
343 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
check::classes(array('Foo','Bar','Spam','NRFilter_i','NRRCFilter_i','NRRCFilterpro_i','NRRCFilterpri_i'));
|
|
// This constructor attempt should fail as there isn't one
|
|
//$spam=new Spam();
|
|
|
|
//check::equal(0,$spam->blah(),"spam object method");
|
|
//check::equal(0,Spam::blah($spam),"spam class method");
|
|
|
|
check::done();
|