Issue #1446366 by xjm: Multiple web test classes mislabeled as unit tests.

8.0.x
webchick 2012-02-29 00:08:18 -08:00
parent 51164230db
commit 9bda29ee1b
6 changed files with 13 additions and 13 deletions

View File

@ -105,7 +105,7 @@ class ImageFieldTestCase extends DrupalWebTestCase {
/**
* Tests the functions for generating paths and URLs for image styles.
*/
class ImageStylesPathAndUrlUnitTest extends DrupalWebTestCase {
class ImageStylesPathAndUrlTestCase extends DrupalWebTestCase {
protected $style_name;
protected $image_info;
protected $image_filepath;
@ -934,7 +934,7 @@ class ImageFieldValidateTestCase extends ImageFieldTestCase {
/**
* Tests that images have correct dimensions when styled.
*/
class ImageDimensionsUnitTest extends DrupalWebTestCase {
class ImageDimensionsTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(

View File

@ -8,7 +8,7 @@
/**
* Tests the node_load_multiple() function.
*/
class NodeLoadMultipleUnitTest extends DrupalWebTestCase {
class NodeLoadMultipleTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
@ -821,7 +821,7 @@ class NodeRSSContentTestCase extends DrupalWebTestCase {
* @todo Cover hook_node_access in a separate test class.
* hook_node_access_records is covered in another test class.
*/
class NodeAccessUnitTest extends DrupalWebTestCase {
class NodeAccessTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Node access',
@ -888,7 +888,7 @@ class NodeAccessUnitTest extends DrupalWebTestCase {
/**
* Test case to verify hook_node_access_records functionality.
*/
class NodeAccessRecordsUnitTest extends DrupalWebTestCase {
class NodeAccessRecordsTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Node access records',

View File

@ -632,7 +632,7 @@ class OpenIDRegistrationTestCase extends OpenIDWebTestCase {
/**
* Test internal helper functions.
*/
class OpenIDUnitTest extends DrupalWebTestCase {
class OpenIDTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'OpenID helper functions',

View File

@ -3,7 +3,7 @@
/**
* Tests Drupal error and exception handlers.
*/
class DrupalErrorHandlerUnitTest extends DrupalWebTestCase {
class DrupalErrorHandlerTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Drupal error handlers',

View File

@ -8,7 +8,7 @@
/**
* Unit tests for the Theme API.
*/
class ThemeUnitTest extends DrupalWebTestCase {
class ThemeTestCase extends DrupalWebTestCase {
protected $profile = 'testing';
public static function getInfo() {
@ -157,7 +157,7 @@ class ThemeUnitTest extends DrupalWebTestCase {
/**
* Unit tests for theme_table().
*/
class ThemeTableUnitTest extends DrupalWebTestCase {
class ThemeTableTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Theme Table',
@ -477,7 +477,7 @@ class ThemeFunctionsTestCase extends DrupalWebTestCase {
/**
* Functional test for initialization of the theme system in hook_init().
*/
class ThemeHookInitUnitTest extends DrupalWebTestCase {
class ThemeHookInitTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Theme initialization in hook_init()',

View File

@ -180,7 +180,7 @@ class TaxonomyVocabularyFunctionalTest extends TaxonomyWebTestCase {
/**
* Tests for taxonomy vocabulary functions.
*/
class TaxonomyVocabularyUnitTest extends TaxonomyWebTestCase {
class TaxonomyVocabularyTestCase extends TaxonomyWebTestCase {
public static function getInfo() {
return array(
@ -394,7 +394,7 @@ class TaxonomyVocabularyUnitTest extends TaxonomyWebTestCase {
/**
* Unit tests for taxonomy term functions.
*/
class TaxonomyTermUnitTest extends TaxonomyWebTestCase {
class TaxonomyTermFunctionTestCase extends TaxonomyWebTestCase {
public static function getInfo() {
return array(
@ -1249,7 +1249,7 @@ class TaxonomyTermIndexTestCase extends TaxonomyWebTestCase {
/**
* Test the taxonomy_term_load_multiple() function.
*/
class TaxonomyLoadMultipleUnitTest extends TaxonomyWebTestCase {
class TaxonomyLoadMultipleTestCase extends TaxonomyWebTestCase {
public static function getInfo() {
return array(