mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
40 lines
891 B
PHP
40 lines
891 B
PHP
<?php
|
|
|
|
namespace SilverStripe\EnvironmentCheck\Tests\Checks;
|
|
|
|
use SilverStripe\EnvironmentCheck\Checks\HasFunctionCheck;
|
|
use SilverStripe\EnvironmentCheck\EnvironmentCheck;
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
/**
|
|
* Class HasFunctionCheckTest
|
|
*
|
|
* @package environmentcheck
|
|
*/
|
|
class HasFunctionCheckTest extends SapphireTest
|
|
{
|
|
public function testCheckReportsMissingFunctions()
|
|
{
|
|
$check = new HasFunctionCheck('foo');
|
|
|
|
$expected = [
|
|
EnvironmentCheck::ERROR,
|
|
'foo() doesn\'t exist'
|
|
];
|
|
|
|
$this->assertEquals($expected, $check->check());
|
|
}
|
|
|
|
public function testCheckReportsFoundFunctions()
|
|
{
|
|
$check = new HasFunctionCheck('class_exists');
|
|
|
|
$expected = [
|
|
EnvironmentCheck::OK,
|
|
'class_exists() exists'
|
|
];
|
|
|
|
$this->assertEquals($expected, $check->check());
|
|
}
|
|
}
|