Completed
Push — master ( e090e4...18d79e )
by Damian
02:26
created

tests/DevCheckControllerTest.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/**
4
 * @mixin PHPUnit_Framework_TestCase
5
 */
6
class DevCheckControllerTest extends SapphireTest {
0 ignored issues
show
As per PSR2, the opening brace for this class should be on a new line.
Loading history...
7
	public function testIndexCreatesChecker() {
8
		$controller = new DevCheckController();
9
10
		$request = new SS_HTTPRequest('GET', 'example.com');
11
12
		$this->assertInstanceOf('EnvironmentChecker', $controller->index($request));
13
	}
14
}
15