public function CasServerConfigTest::casServerConnectionOptionsDataProvider in CAS 8
Same name and namespace in other branches
- 2.x tests/src/Unit/CasServerConfigTest.php \Drupal\Tests\cas\Unit\CasServerConfigTest::casServerConnectionOptionsDataProvider()
Data provider for testCasServerGuzzleConnectionOptions.
Return value
array The data to provide.
File
- tests/
src/ Unit/ CasServerConfigTest.php, line 89
Class
- CasServerConfigTest
- CasServerConfig unit tests.
Namespace
Drupal\Tests\cas\UnitCode
public function casServerConnectionOptionsDataProvider() {
return [
[
CasHelper::CA_NONE,
],
[
CasHelper::CA_CUSTOM,
],
[
CasHelper::CA_DEFAULT,
],
];
}