summaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/rename_scope_runme.php
blob: e1db4f59c7cd8364b252825835d0da0e5cc626d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

require "tests.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();