mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
27 lines
555 B
PHP
27 lines
555 B
PHP
<?php
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\Control\NullHTTPRequest;
|
|
|
|
/**
|
|
* @package framework
|
|
* @subpackage tests
|
|
*/
|
|
class NullHTTPRequestTest extends SapphireTest {
|
|
|
|
public function testAllHttpVerbsAreFalse() {
|
|
$r = new NullHTTPRequest();
|
|
$this->assertFalse($r->isGET());
|
|
$this->assertFalse($r->isPOST());
|
|
$this->assertFalse($r->isPUT());
|
|
$this->assertFalse($r->isDELETE());
|
|
$this->assertFalse($r->isHEAD());
|
|
}
|
|
|
|
public function testGetURL() {
|
|
$r = new NullHTTPRequest();
|
|
$this->assertEquals('', $r->getURL());
|
|
}
|
|
|
|
}
|