mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
15 lines
332 B
PHP
15 lines
332 B
PHP
<?php
|
|
|
|
/**
|
|
* @mixin PHPUnit_Framework_TestCase
|
|
*/
|
|
class DevCheckControllerTest extends SapphireTest {
|
|
public function testIndexCreatesChecker() {
|
|
$controller = new DevCheckController();
|
|
|
|
$request = new SS_HTTPRequest('GET', 'example.com');
|
|
|
|
$this->assertInstanceOf('EnvironmentChecker', $controller->index($request));
|
|
}
|
|
}
|