PHP5's C extension API has changed substantially so you need to use -php7 to specify you want PHP7 compatible wrappers. Fixes https://github.com/swig/swig/issues/571
16 lines
627 B
PHP
16 lines
627 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
require "rename_scope.php";
|
|
|
|
check::classes(array("rename_scope","Interface_UP","Interface_BP","Natural_UP","Natural_BP","Bucket"));
|
|
|
|
check::classmethods("Interface_UP",array("__construct","__set","__isset","__get"));
|
|
check::classmethods("Interface_BP",array("__construct","__set","__isset","__get"));
|
|
check::classmethods("Natural_UP",array("__construct","__set","__isset","__get","rtest"));
|
|
check::classmethods("Natural_BP",array("__construct","__set","__isset","__get","rtest"));
|
|
check::classparent("Natural_UP","Interface_UP");
|
|
check::classparent("Natural_BP","Interface_BP");
|
|
|
|
check::done();
|
|
?>
|