public function PhoneInternationalFieldTest::providerPhoneNumbers in International Phone 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/PhoneInternationalFieldTest.php \Drupal\Tests\phone_international\Functional\PhoneInternationalFieldTest::providerPhoneNumbers()
- 3.x tests/src/Functional/PhoneInternationalFieldTest.php \Drupal\Tests\phone_international\Functional\PhoneInternationalFieldTest::providerPhoneNumbers()
Provides the phone numbers to check and expected results.
File
- tests/
src/ Functional/ PhoneInternationalFieldTest.php, line 70
Class
- PhoneInternationalFieldTest
- Simple test to ensure that main page loads with module enabled.
Namespace
Drupal\Tests\phone_international\FunctionalCode
public function providerPhoneNumbers() {
return [
'standard phone number' => [
'+123456789',
'+123456789',
],
'standard phone number country' => [
'+351123456789',
'+351123456789',
],
];
}