123456789101112131415161718192021222324252627 |
- <?php
- class CRPhoneNumberTestCase extends DrupalWebTestCase {
-
- public static function getInfo() {
- return array(
- 'name' => t('Costa Rica Phone number test'),
- 'description' => t('Tests various valid and invalid Costa Rica phone numbers for validity'),
- 'group' => t('Phone')
- );
- }
- public function testPhoneCRValid() {
-
- }
- public function testPhoneCRInvalid() {
-
- }
- public function testPhoneCRFormatting() {
-
- }
- }
|