diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-25 13:14:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-25 13:14:29 +0000 |
commit | eda100b83da4d71bf0bfa6c614e08327ef0d292b (patch) | |
tree | ac11fb0aae0e68aee34b4aeffb7f32778bcf809d /modules/simpletest/tests/registry.test | |
parent | 66df602593230a2483d6538927fd66310c28c3f8 (diff) | |
download | brdo-eda100b83da4d71bf0bfa6c614e08327ef0d292b.tar.gz brdo-eda100b83da4d71bf0bfa6c614e08327ef0d292b.tar.bz2 |
- Patch #338403 by drewish: code comments clean-up.
Diffstat (limited to 'modules/simpletest/tests/registry.test')
-rw-r--r-- | modules/simpletest/tests/registry.test | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/simpletest/tests/registry.test b/modules/simpletest/tests/registry.test index 794403dac..82d33b51b 100644 --- a/modules/simpletest/tests/registry.test +++ b/modules/simpletest/tests/registry.test @@ -2,10 +2,6 @@ // $Id$ class RegistryParseFileTestCase extends DrupalWebTestCase { - - /** - * Implementation of getInfo(). - */ function getInfo() { return array( 'name' => t('Registry parse file test'), @@ -14,9 +10,6 @@ class RegistryParseFileTestCase extends DrupalWebTestCase { ); } - /** - * Implementation of setUp(). - */ function setUp() { $this->fileName = 'registry_test_' . md5(rand()); $this->functionName = 'registry_test_function' . md5(rand()); @@ -56,12 +49,8 @@ CONTENTS; } class RegistryParseFilesTestCase extends DrupalWebTestCase { - protected $fileTypes = array('new', 'existing_changed'); - /** - * Implementation of getInfo(). - */ function getInfo() { return array( 'name' => t('Registry parse files test'), @@ -70,9 +59,6 @@ class RegistryParseFilesTestCase extends DrupalWebTestCase { ); } - /** - * Implementation of setUp(). - */ function setUp() { parent::setUp(); // Create files with some php to parse - one 'new', one 'existing' so |