phone.cs.test 846 B

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