xref: /PHP-8.0/ext/skeleton/tests/002.phpt (revision c5401854)
1--TEST--
2test1() Basic test
3--SKIPIF--
4<?php
5if (!extension_loaded('%EXTNAME%')) {
6    echo 'skip';
7}
8?>
9--FILE--
10<?php
11$ret = test1();
12
13var_dump($ret);
14?>
15--EXPECT--
16The extension %EXTNAME% is loaded and working!
17NULL
18