PageRenderTime 56ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/test-suite/php4/rename_scope_runme.php4

#
PHP | 17 lines | 12 code | 4 blank | 1 comment | 0 complexity | 2c743073d2422b255e908cb0d061e054 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. <?php
  2. // Sample test file
  3. require "tests.php4";
  4. require "rename_scope.php";
  5. check::classes(array("interface_up","interface_bp","natural_up","natural_bp"));
  6. check::classmethods("Interface_UP",array("interface_up"));
  7. check::classmethods("Interface_BP",array("interface_bp"));
  8. check::classmethods("Natural_UP",array("interface_up","natural_up","rtest"));
  9. check::classmethods("Natural_BP",array("interface_bp","natural_bp","rtest"));
  10. check::classparent("Natural_UP","interface_up");
  11. check::classparent("Natural_BP","interface_bp");
  12. check::done();
  13. ?>