mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
32 lines
735 B
PHP
32 lines
735 B
PHP
<?php
|
|
|
|
namespace SilverStripe\EnvironmentCheck\Tests\Controllers;
|
|
|
|
use SilverStripe\Control\HTTPRequest;
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\EnvironmentCheck\Controllers\DevCheckController;
|
|
use SilverStripe\EnvironmentCheck\EnvironmentChecker;
|
|
|
|
/**
|
|
* Class DevCheckControllerTest
|
|
*
|
|
* @package environmentcheck
|
|
*/
|
|
class DevCheckControllerTest extends SapphireTest
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
* @var array
|
|
*/
|
|
protected $usesDatabase = true;
|
|
|
|
public function testIndexCreatesChecker()
|
|
{
|
|
$controller = new DevCheckController();
|
|
|
|
$request = new HTTPRequest('GET', 'example.com');
|
|
|
|
$this->assertInstanceOf(EnvironmentChecker::class, $controller->index($request));
|
|
}
|
|
}
|