flot_example.test in Flot 7
File
flot_example/flot_example.testView 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
Name | Description |
---|---|
FlotExampleBasicTestCase | Test basic functionality of My Module. |