mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
15 lines
308 B
PHP
15 lines
308 B
PHP
<?php
|
|
|
|
namespace TheCodingMachine\Safe\PHPStan\Utils;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class FunctionListLoaderTest extends TestCase
|
|
{
|
|
|
|
public function testGetFunctionList()
|
|
{
|
|
$functions = FunctionListLoader::getFunctionList();
|
|
$this->assertArrayHasKey('fopen', $functions);
|
|
}
|
|
}
|