Skip to content

Feedback Validating function ReflectionExtension #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions tests/michel.sobreira/ReflectionExtension.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
--TEST--
Feedback Validating error of function ReflectionExtension
--CREDITS--
Michel Sobreira <sobreira.michel@gmail.com>
--FILE--
<?php

$ext = new ReflectionExtension('gd');
if($ext != true)
{
$ext->info();
}
else
{
echo "function does not exist";
}

?>
--EXPECT--
function does not exist
20 changes: 20 additions & 0 deletions tests/michel.sobreira/ReflectionExtension2.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
--TEST--
Verifying that the ReflectionExtension function is validating the parameters correctly
--CREDITS--
Michel Sobreira <sobreira.michel@gmail.com>
--FILE--
<?php

$ext = new ReflectionExtension('gd');
if($ext == true)
{
echo "correctly";
}
else
{
echo "function does not exist";
}

?>
--EXPECT--
correctly