1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00
Files
archived-php-src/ext/skeleton/tests/002.phpt
2018-10-14 12:07:20 -03:00

18 lines
236 B
PHP

--TEST--
%EXTNAME%_test1() Basic test
--SKIPIF--
<?php
if (!extension_loaded('%EXTNAME%')) {
echo 'skip';
}
?>
--FILE--
<?php
$ret = %EXTNAME%_test1();
var_dump($ret);
?>
--EXPECT--
The extension %EXTNAME% is loaded and working!
NULL