summaryrefslogtreecommitdiff
path: root/pear
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2004-03-21 23:06:20 +0000
committerGreg Beaver <cellog@php.net>2004-03-21 23:06:20 +0000
commit578c28fb0cf4a55eed4c9a482938573d8cc7b25d (patch)
treec2fa5eede8f0a68873ef36d29656196ec915a7c5 /pear
parent9b530c04f151575ddef7dd13ee9c4b177a63cee8 (diff)
downloadphp-git-578c28fb0cf4a55eed4c9a482938573d8cc7b25d.tar.gz
update naming of tests - forgot to rename files before committing,
but this is not a big deal, as the name 'Error_Stack' still makes sense
Diffstat (limited to 'pear')
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessage.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessageTemplate.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrors.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpop.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopcallback.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopstatic.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_singleton.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_staticGetErrors.php4
-rw-r--r--pear/tests/PEAR_ErrorStack/testsuite.php16
9 files changed, 24 insertions, 24 deletions
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessage.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessage.php
index 2f46b19bc9..e636886e3d 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessage.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessage.php
@@ -21,10 +21,10 @@ class testgemessage1 {}
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_getErrorMessage extends PHPUnit_TestCase
+class Error_Stack_TestCase_getErrorMessage extends PHPUnit_TestCase
{
- function PEAR_ErrorStack_TestCase_getErrorMessage($name)
+ function Error_Stack_TestCase_getErrorMessage($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessageTemplate.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessageTemplate.php
index 36270d6e9f..a1a39e4757 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessageTemplate.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrorMessageTemplate.php
@@ -13,10 +13,10 @@
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_getErrorMessageTemplate extends PHPUnit_TestCase
+class Error_Stack_TestCase_getErrorMessageTemplate extends PHPUnit_TestCase
{
- function PEAR_ErrorStack_TestCase_getErrorMessageTemplate($name)
+ function Error_Stack_TestCase_getErrorMessageTemplate($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrors.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrors.php
index e2a986e679..4207efa5f8 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrors.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_getErrors.php
@@ -13,10 +13,10 @@
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_getErrors extends PHPUnit_TestCase
+class Error_Stack_TestCase_getErrors extends PHPUnit_TestCase
{
- function PEAR_ErrorStack_TestCase_getErrors($name)
+ function Error_Stack_TestCase_getErrors($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpop.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpop.php
index ec7eb8399a..2e029629a0 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpop.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpop.php
@@ -13,7 +13,7 @@
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_pushpop extends PHPUnit_TestCase
+class Error_Stack_TestCase_pushpop extends PHPUnit_TestCase
{
/**
* A PEAR_PackageFileManager object
@@ -21,7 +21,7 @@ class PEAR_ErrorStack_TestCase_pushpop extends PHPUnit_TestCase
*/
var $packagexml;
- function PEAR_ErrorStack_TestCase_pushpop($name)
+ function Error_Stack_TestCase_pushpop($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopcallback.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopcallback.php
index 3838ae309d..02b33b9057 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopcallback.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopcallback.php
@@ -13,7 +13,7 @@
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_pushpopcallback extends PHPUnit_TestCase
+class Error_Stack_TestCase_pushpopcallback extends PHPUnit_TestCase
{
/**
* A PEAR_PackageFileManager object
@@ -21,7 +21,7 @@ class PEAR_ErrorStack_TestCase_pushpopcallback extends PHPUnit_TestCase
*/
var $packagexml;
- function PEAR_ErrorStack_TestCase_pushpopcallback($name)
+ function Error_Stack_TestCase_pushpopcallback($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopstatic.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopstatic.php
index 1af66d7bef..e2b17bb8d8 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopstatic.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_pushpopstatic.php
@@ -13,7 +13,7 @@
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_pushpopstatic extends PHPUnit_TestCase
+class Error_Stack_TestCase_pushpopstatic extends PHPUnit_TestCase
{
/**
* A PEAR_PackageFileManager object
@@ -21,7 +21,7 @@ class PEAR_ErrorStack_TestCase_pushpopstatic extends PHPUnit_TestCase
*/
var $packagexml;
- function PEAR_ErrorStack_TestCase_pushpopstatic($name)
+ function Error_Stack_TestCase_pushpopstatic($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_singleton.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_singleton.php
index 0a052f17f1..f2d8ec0a84 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_singleton.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_singleton.php
@@ -13,7 +13,7 @@
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_singleton extends PHPUnit_TestCase
+class Error_Stack_TestCase_singleton extends PHPUnit_TestCase
{
/**
* A PEAR_PackageFileManager object
@@ -21,7 +21,7 @@ class PEAR_ErrorStack_TestCase_singleton extends PHPUnit_TestCase
*/
var $packagexml;
- function PEAR_ErrorStack_TestCase_singleton($name)
+ function Error_Stack_TestCase_singleton($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_staticGetErrors.php b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_staticGetErrors.php
index d96480d442..7c84fe5fda 100644
--- a/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_staticGetErrors.php
+++ b/pear/tests/PEAR_ErrorStack/Error_Stack_TestCase_staticGetErrors.php
@@ -13,10 +13,10 @@
* @package PEAR_ErrorStack
*/
-class PEAR_ErrorStack_TestCase_staticGetErrors extends PHPUnit_TestCase
+class Error_Stack_TestCase_staticGetErrors extends PHPUnit_TestCase
{
- function PEAR_ErrorStack_TestCase_staticGetErrors($name)
+ function Error_Stack_TestCase_staticGetErrors($name)
{
$this->PHPUnit_TestCase($name);
}
diff --git a/pear/tests/PEAR_ErrorStack/testsuite.php b/pear/tests/PEAR_ErrorStack/testsuite.php
index 1899142746..0dcb149ff1 100644
--- a/pear/tests/PEAR_ErrorStack/testsuite.php
+++ b/pear/tests/PEAR_ErrorStack/testsuite.php
@@ -46,14 +46,14 @@ $title = 'PhpUnit test run, PEAR_ErrorStack package';
<h2>Tests</h2>
<?php
$testcases = array(
- 'PEAR_ErrorStack_TestCase_singleton',
- 'PEAR_ErrorStack_TestCase_pushpop',
- 'PEAR_ErrorStack_TestCase_pushpopstatic',
- 'PEAR_ErrorStack_TestCase_pushpopcallback',
- 'PEAR_ErrorStack_TestCase_getErrorMessage',
- 'PEAR_ErrorStack_TestCase_getErrorMessageTemplate',
- 'PEAR_ErrorStack_TestCase_getErrors',
- 'PEAR_ErrorStack_TestCase_staticGetErrors',
+ 'Error_Stack_TestCase_singleton',
+ 'Error_Stack_TestCase_pushpop',
+ 'Error_Stack_TestCase_pushpopstatic',
+ 'Error_Stack_TestCase_pushpopcallback',
+ 'Error_Stack_TestCase_getErrorMessage',
+ 'Error_Stack_TestCase_getErrorMessageTemplate',
+ 'Error_Stack_TestCase_getErrors',
+ 'Error_Stack_TestCase_staticGetErrors',
);
define('PEAR_LOG_EMERG', 0); /** System is unusable */
define('PEAR_LOG_ALERT', 1); /** Immediate action required */