diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2012-01-30 23:46:54 -0800 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2012-01-30 23:46:54 -0800 |
commit | 97791517f8715934fdd3af37853de0ce56fcfc05 (patch) | |
tree | 69b99849aa5491b7bf3aae9137d9901228697682 /modules/simpletest | |
parent | a66c4bbbd39f9fce14df6ad63805f30fae95b518 (diff) | |
download | brdo-97791517f8715934fdd3af37853de0ce56fcfc05.tar.gz brdo-97791517f8715934fdd3af37853de0ce56fcfc05.tar.bz2 |
Issue #984874 by LSU_JBob, dalin, Albert Volkman, sun: Use DrupalUnitTestCase where possible.
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/tests/common.test | 4 | ||||
-rw-r--r-- | modules/simpletest/tests/unicode.test | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/simpletest/tests/common.test b/modules/simpletest/tests/common.test index 7e79450ff..5650d8c01 100644 --- a/modules/simpletest/tests/common.test +++ b/modules/simpletest/tests/common.test @@ -524,7 +524,7 @@ class CommonSizeTestCase extends DrupalUnitTestCase { /** * Test drupal_explode_tags() and drupal_implode_tags(). */ -class DrupalTagsHandlingTestCase extends DrupalWebTestCase { +class DrupalTagsHandlingTestCase extends DrupalUnitTestCase { var $validTags = array( 'Drupal' => 'Drupal', 'Drupal with some spaces' => 'Drupal with some spaces', @@ -2113,7 +2113,7 @@ class DrupalErrorCollectionUnitTest extends DrupalWebTestCase { /** * Test the drupal_parse_info_file() API function. */ -class ParseInfoFilesTestCase extends DrupalWebTestCase { +class ParseInfoFilesTestCase extends DrupalUnitTestCase { public static function getInfo() { return array( 'name' => 'Parsing .info files', diff --git a/modules/simpletest/tests/unicode.test b/modules/simpletest/tests/unicode.test index 47a4938fe..cf7991b6c 100644 --- a/modules/simpletest/tests/unicode.test +++ b/modules/simpletest/tests/unicode.test @@ -8,7 +8,7 @@ /** * Test unicode handling features implemented in unicode.inc. */ -class UnicodeUnitTest extends DrupalWebTestCase { +class UnicodeUnitTest extends DrupalUnitTestCase { /** * Whether to run the extended version of the tests (including non latin1 characters). |