web/vendor/thecodingmachine/phpstan-safe-rule/tests/Utils/FunctionListLoaderTest.php
2019-03-07 12:11:50 -06:00

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);
}
}