You are here

flot_example.test in Flot 7

File

flot_example/flot_example.test
View source
<?php

/**
 * Test basic functionality of My Module.
 */
class FlotExampleBasicTestCase extends DrupalWebTestCase {

  /**
   * {@inheritdoc}
   */
  public static function getInfo() {
    return array(
      'name' => 'Flot Examples',
      'description' => 'Confirm that the FLot Example module can be enabled.',
      'group' => 'Flot',
    );
  }

  /**
   * {@inheritdoc}
   */
  public function setUp() {

    // Enable this custom module.
    $modules = array(
      'flot_example',
    );
    parent::setUp($modules);
  }

}

Classes

Namesort descending Description
FlotExampleBasicTestCase Test basic functionality of My Module.