You are here

field_conditional_state.test in Field Conditional States 7.2

Tests for Field Conditional States

Currently there aren't any tests.

File

field_conditional_state.test
View source
<?php

/**
 * @file
 * Tests for Field Conditional States
 *
 * Currently there aren't any tests.
 */

/**
 * Consistency test cases for Field Conditional State
 */
class FieldConditionalStateTestCase extends DrupalWebTestCase {

  /**
   * Implements getInfo().
   */
  public static function getInfo() {
    return array(
      'name' => t('Test Cases'),
      'description' => t('Tests for Field Conditional State.'),
      'group' => t('Field Conditional State'),
    );
  }

  /**
   * Set up the needed modules.
   */
  public function setUp() {
    parent::setUp('field_conditional_state');
  }

  /**
   * Test field settings.
   */
  public function testFieldSettings() {
    $this
      ->assertTrue(TRUE, 'Nothing to test here...');
  }

}

Classes

Namesort descending Description
FieldConditionalStateTestCase Consistency test cases for Field Conditional State