View source
<?php
class CSPhoneNumberTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => t('Czech Republic Phone number test'),
'description' => t('Tests various valid and invalid Czech Republic phone numbers for validity'),
'group' => t('Phone'),
);
}
public function testPhoneCSValid() {
$this
->assertTrue(valid_phone_number('cs', '+420 999 999 999'), t('Test valid - +420 999 999 999'));
}
public function testPhoneCSInvalid() {
}
public function testPhoneCSFormatting() {
}
}