mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
20 lines
388 B
PHP
20 lines
388 B
PHP
<?php
|
|
|
|
/**
|
|
* @mixin PHPUnit_Framework_TestCase
|
|
*/
|
|
class URLCheckTest extends SapphireTest
|
|
{
|
|
public function testCheckReportsMissingPages()
|
|
{
|
|
$check = new URLCheck('foo', 'bar');
|
|
|
|
$expected = array(
|
|
EnvironmentCheck::ERROR,
|
|
'Error retrieving "foo" (Code: 404)',
|
|
);
|
|
|
|
$this->assertEquals($expected, $check->check());
|
|
}
|
|
}
|