public function GroupContentEnablerManagerTest::providerTestHasHandler in Group 8
Provides test data for testHasHandler().
Return value
array Test data.
File
- tests/
src/ Unit/ GroupContentEnablerManagerTest.php, line 144
Class
- GroupContentEnablerManagerTest
- Tests the GroupContentEnabler plugin manager.
Namespace
Drupal\Tests\group\UnitCode
public function providerTestHasHandler() {
return [
[
'apple',
TRUE,
],
[
'banana',
FALSE,
],
[
'pear',
FALSE,
],
];
}