public function QueryParametersToURLTestCase::unpackTestCase in Query Parameters To URL 7
Unpacks test case.
4 calls to QueryParametersToURLTestCase::unpackTestCase()
- QueryParametersToURLGlobalRedirectTestCase::testRedirectWithQueryParameters in ./
query_parameters_to_url.test - Tests if a path with query parameters gets redirected to the clean path.
- QueryParametersToURLGlobalRedirectTestCase::testURLRewriting in ./
query_parameters_to_url.test - Tests if inbound/outbound hooks do their job.
- QueryParametersToURLTestCase::testRedirectWithQueryParameters in ./
query_parameters_to_url.test - Tests if a path with query parameters gets redirected to the clean path.
- QueryParametersToURLTestCase::testURLRewriting in ./
query_parameters_to_url.test - Tests if inbound/outbound hooks do their job.
File
- ./
query_parameters_to_url.test, line 244 - Query Arguments To URL tests.
Class
- QueryParametersToURLTestCase
- General test cases.
Code
public function unpackTestCase($test_case) {
return array(
$test_case['path'],
$test_case['options'],
$test_case['expected_path'],
);
}