swig/Examples/test-suite/php/arrays_scope_runme.php
Nihal 2e5f0fac52 Add class method check in Test Cases.
Currently they check flat functions at check::functions()
2017-07-27 06:51:00 +05:30

14 lines
236 B
PHP

<?php
require "tests.php";
require "arrays_scope.php";
// New classes
check::classes(array(arrays_scope,Bar));
// New functions
check::classmethods(Bar,array(__construct,__set,__isset,__get,blah));
$bar=new bar();
check::done();
?>