Upstream version 1.3.40
[profile/ivi/swig.git] / Examples / test-suite / php / evil_diamond_ns_runme.php
1 <?php
2
3 require "tests.php";
4 require "evil_diamond_ns.php";
5
6 check::classes(array("evil_diamond_ns","foo","bar","baz","spam"));
7 check::functions("test");
8 check::is_a("bar","foo");
9 check::is_a("baz","foo");
10 check::is_a("spam","foo");
11 check::is_a("spam","bar");
12 //No multiple inheritance
13 //check::is_a("spam","baz");
14 $spam=new spam();
15 $_spam=test($spam);
16
17 check::done();
18 ?>