aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php5/evil_diamond_ns_runme.php
blob: fcce0f7678e6a4676c7e4e3976b3a08def5f6362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

require "tests.php";
require "evil_diamond_ns.php";

check::classes(array("evil_diamond_ns","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");
$spam=new spam();
$_spam=test($spam);

check::done();
?>