diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2009-04-08 16:08:58 +0000 |
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2009-04-08 16:08:58 +0000 |
| commit | fa587effb79a043bd32cd93800a912907d7d346d (patch) | |
| tree | 866309a20bab843ed0fb63c63cd93b3c5f9e54d4 /ext/reflection/tests/ReflectionClass_getExtensionName_basic.phpt | |
| parent | bab2569a8a8ebe8891ee1ab75c3f3efef745b580 (diff) | |
| download | php-git-fa587effb79a043bd32cd93800a912907d7d346d.tar.gz | |
Rename reflection*.phpt to Reflection*.phpt for consistency.
Diffstat (limited to 'ext/reflection/tests/ReflectionClass_getExtensionName_basic.phpt')
| -rw-r--r-- | ext/reflection/tests/ReflectionClass_getExtensionName_basic.phpt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/reflection/tests/ReflectionClass_getExtensionName_basic.phpt b/ext/reflection/tests/ReflectionClass_getExtensionName_basic.phpt new file mode 100644 index 0000000000..264f7d986d --- /dev/null +++ b/ext/reflection/tests/ReflectionClass_getExtensionName_basic.phpt @@ -0,0 +1,14 @@ +--TEST-- +ReflectionClass::getExtensionName() method - basic test for getExtensionName() method +--SKIPIF-- +<?php extension_loaded('dom') or die('skip - dom extension not loaded'); ?> +--CREDITS-- +Rein Velt <rein@velt.org> +#testFest Roosendaal 2008-05-10 +--FILE-- +<?php + $rc=new reflectionClass('domDocument'); + var_dump( $rc->getExtensionName()) ; +?> +--EXPECT-- +unicode(3) "dom" |
