public function SessionTest::provideResponseHeader in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::provideResponseHeader()
File
- vendor/
behat/ mink/ tests/ SessionTest.php, line 145
Class
Namespace
Behat\Mink\TestsCode
public function provideResponseHeader() {
return array(
array(
'test',
'Mink',
array(
'Mink' => 'test',
),
),
array(
'test',
'mink',
array(
'Mink' => 'test',
),
),
array(
'test',
'Mink',
array(
'mink' => 'test',
),
),
array(
'test',
'Mink',
array(
'Mink' => array(
'test',
'test2',
),
),
),
array(
null,
'other',
array(
'Mink' => 'test',
),
),
);
}