/trunk/Examples/test-suite/php/class_ignore_runme.php
PHP | 16 lines | 11 code | 4 blank | 1 comment | 0 complexity | 70012c5cd0cadf0262e4e9e8996696e9 MD5 | raw file
1<?php 2 3require "tests.php"; 4require "class_ignore.php"; 5 6check::functions(array(do_blah,new_bar,bar_blah,new_boo,boo_away,new_far,new_hoo)); 7check::classes(array(class_ignore,Bar,Boo,Far,Hoo)); 8// No new vars 9check::globals(array()); 10 11$bar=new bar(); 12do_blah($bar); 13check::classparent($bar,""); 14 15check::done(); 16?>