Skip to content

Instantly share code, notes, and snippets.

View felixmaier1989's full-sized avatar

Felix felixmaier1989

  • Hanoi
View GitHub Profile
<?php
App::uses('CakeTestCase', 'TestSuite');
App::uses('HttpSocketResponse', 'Network/Http');
class HeaderTest extends CakeTestCase {
public function testParseHeader() {
$Response = new DebugHttpSocketResponse();
$header_string = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'header.txt');
$actual = $Response->_parseHeader($header_string);