public function testHttpRequestInputRequest()
{
$this->specify("has for empty element returns incorrect results", function () {
$this->hasEmpty('has');
});
$this->specify("has for set element returns incorrect results", function () {
$this->hasNotEmpty('has', 'setRequestVar');
});
$this->specify("get for empty element returns incorrect results", function () {
$this->getEmpty('get');
});
$this->specify("get returns incorrect results", function () {
$this->getNotEmpty('get', 'setRequestVar');
});
$this->specify("get does not return sanitized data", function () {
$this->getSanitized('get', 'setRequestVar');
});
$this->specify("get with array as filter does not return sanitized data", function () {
$this->getSanitizedArrayFilter('get', ['string'], 'setRequestVar');
});
}