You are here

public function ValidatorTest::dataPhoneNumbers in Telephone Validation 8.2

Provides test data to dataPhoneNumbers().

Return value

array

File

tests/src/Unit/ValidatorTest.php, line 112

Class

ValidatorTest
@coversDefaultClass Drupal\telephone_validation\Validator @group Telephone

Namespace

Drupal\Tests\telephone_validation\Unit

Code

public function dataPhoneNumbers() {
  return [
    [
      'CA',
      '+1',
      '2507638884',
    ],
    [
      'NO',
      '+47',
      '98765432',
    ],
    [
      'DK',
      '+45',
      '55555555',
    ],
    [
      'PL',
      '+48',
      '748111111',
    ],
  ];
}