aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php4/evil_diamond_runme.php4
blob: 45da10115aded668253f666006e7baf9b76afba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
// Sample test file

require "tests.php4";
require "evil_diamond.php";

check::classes(array("foo","bar","baz","spam"));
check::functions("test");
check::is_a("bar","foo");
check::is_a("baz","foo");
check::is_a("spam","foo");
check::is_a("spam","bar");
//No multiple inheritance
//check::is_a("spam","baz");

check::done();
?>