phone.eg.test 791 B

123456789101112131415161718192021222324252627
  1. <?php
  2. class EGPhoneNumberTestCase extends DrupalWebTestCase {
  3. /**
  4. * Implementation of getInfo()
  5. *
  6. */
  7. public static function getInfo() {
  8. return array(
  9. 'name' => t('Egypt Phone number test'),
  10. 'description' => t('Tests various valid and invalid Egypt phone numbers for validity'),
  11. 'group' => t('Phone')
  12. );
  13. }
  14. public function testPhoneEGValid() {
  15. //$this->assertTrue(valid_phone_number('eg', '04 476 0000'), t('Test valid'));
  16. }
  17. public function testPhoneEGInvalid() {
  18. //$this->assertFalse(valid_phone_number('eg', '021 3012 3456'), t('Test invalid '));
  19. }
  20. public function testPhoneEGFormatting() {
  21. //$this->assertEqual(format_phone_number('eg', '+6421123456', null), '+64 21 123 456', t('Check international mobile format'));
  22. }
  23. }