diff options
author | Robin Fernandes <robinf@php.net> | 2008-01-30 14:25:57 +0000 |
---|---|---|
committer | Robin Fernandes <robinf@php.net> | 2008-01-30 14:25:57 +0000 |
commit | 7eb114a9cf19e585be1a0075f5b1275a40d68e91 (patch) | |
tree | f6ca9f65deb757efca4406c18041569f3cce2710 /tests/classes/autoload_017.phpt | |
parent | b9df996a3b372a869a9e30cb02d45ac63e031450 (diff) | |
download | php-git-7eb114a9cf19e585be1a0075f5b1275a40d68e91.tar.gz |
Adding tests for class features, including __autoload(), property inheritance rules and class constants.
Diffstat (limited to 'tests/classes/autoload_017.phpt')
-rw-r--r-- | tests/classes/autoload_017.phpt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/classes/autoload_017.phpt b/tests/classes/autoload_017.phpt new file mode 100644 index 0000000000..26de9fd3ae --- /dev/null +++ b/tests/classes/autoload_017.phpt @@ -0,0 +1,23 @@ +--TEST-- +Ensure ReflectionClass::implementsInterface triggers autoload. +--SKIPIF-- +<?php extension_loaded('reflection') or die('skip'); ?> +--FILE-- +<?php + function __autoload($name) + { + echo "In autoload: "; + var_dump($name); + } + + $rc = new ReflectionClass("stdClass"); + + try { + $rc->implementsInterface("UndefI"); + } catch (ReflectionException $e) { + echo $e->getMessage(); + } +?> +--EXPECTF-- +In autoload: string(6) "UndefI" +Interface UndefI does not exist
\ No newline at end of file |