You are here

domain.test in Domain Access 7.2

Same filename and directory in other branches
  1. 5 tests/domain.test
  2. 6.2 tests/domain.test
  3. 7.3 tests/domain.test

Simpletest for Domain Access

File

tests/domain.test
View source
<?php

/**
 * @file
 * Simpletest for Domain Access
 */
class DomainCreateTest extends DrupalTestCase {
  function get_info() {
    return array(
      'name' => t('Domain creation'),
      'desc' => t('Create domain record and verify its consistency in the database.'),
      'group' => t('Domain Access'),
    );
  }
  function testCreateDomain() {
    $domain = $this
      ->randomName();
  }

}

Classes

Namesort descending Description
DomainCreateTest @file Simpletest for Domain Access