htmlmail.test in HTML Mail 7.2
Tests for the HTML Mail module.
File
htmlmail.testView source
<?php
/**
* @file
* Tests for the HTML Mail module.
*/
/**
* Test case for the HTML Mail module.
*/
class HtmlmailWebTestCase extends DrupalWebTestCase {
/**
* Implements getInfo().
*
* @return array
*/
public static function getInfo() {
return array(
'name' => 'HTML Mail hello',
'description' => 'Dummy test to satisfy DrupalCI.',
'group' => 'HTML Mail',
);
}
/**
* Implements setUp().
*/
public function setUp() {
parent::setUp('htmlmail');
}
/**
* Just an empty test.
*/
public function testHello() {
}
}
Classes
Name | Description |
---|---|
HtmlmailWebTestCase | Test case for the HTML Mail module. |