Source

						public function testHeaderArrayKeyValue() {
		$expected = array(
			'Cache-Control: no-cache'
		);
		$result = $this->message->headers(array('Cache-Control' => 'no-cache'));
		$this->assertEqual($expected, $result);
	}