Update the Test class name to be the same as the file

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5794 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2019-12-05 12:24:05 +00:00
parent b084803bf6
commit 11d4f7686b
40 changed files with 40 additions and 40 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the authentication */ /** Test the authentication */
class test_auth extends PHPUnit_Framework_TestCase class authTest extends PHPUnit_Framework_TestCase
{ {
public function test_page_1 () public function test_page_1 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the authhtpasswd.php file */ /** Test the authhtpasswd.php file */
class test_authhtpasswd extends PHPUnit_Framework_TestCase class authhtpasswdTest extends PHPUnit_Framework_TestCase
{ {
public function test_clean () public function test_clean ()
{ {
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the authentication on Sympa Service */ /** Test the authentication on Sympa Service */
class test_authsympa extends PHPUnit_Framework_TestCase class authsympaTest extends PHPUnit_Framework_TestCase
{ {
public function test_connect_1 () public function test_connect_1 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the authzgroups.php file */ /** Test the authzgroups.php file */
class test_authzgroups extends PHPUnit_Framework_TestCase class authzgroupsTest extends PHPUnit_Framework_TestCase
{ {
private $dbconfig = array ( private $dbconfig = array (
"dsn" => "sqlite:/tmp/databaseAuthzGroups.db", "dsn" => "sqlite:/tmp/databaseAuthzGroups.db",
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the authzgroupsoo.php file */ /** Test the authzgroupsoo.php file */
class test_authzgroupsoo extends PHPUnit_Framework_TestCase class authzgroupsooTest extends PHPUnit_Framework_TestCase
{ {
private $dbconfig = array ( private $dbconfig = array (
"dsn" => "sqlite:/tmp/databaseAuthzGroupsoo.db", "dsn" => "sqlite:/tmp/databaseAuthzGroupsoo.db",
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the cache.php file */ /** Test the cache.php file */
class test_cachefile extends PHPUnit_Framework_TestCase class cachefileTest extends PHPUnit_Framework_TestCase
{ {
public function testInit () public function testInit ()
{ {
+1 -1
View File
@@ -2,7 +2,7 @@
/** Test the certification Authority /** Test the certification Authority
*/ */
class test_certificationauthority extends PHPUnit_Framework_TestCase class certificationauthorityTest extends PHPUnit_Framework_TestCase
{ {
public function test_createCA_1 () public function test_createCA_1 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the config.php file */ /** Test the config.php file */
class test_config extends PHPUnit_Framework_TestCase class configTest extends PHPUnit_Framework_TestCase
{ {
public function test_ExternFile () public function test_ExternFile ()
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the Conversion of format */ /** Test the Conversion of format */
class test_convert extends PHPUnit_Framework_TestCase class convertTest extends PHPUnit_Framework_TestCase
{ {
public function test_convertDate1 () public function test_convertDate1 ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the csrf.php file */ /** Test the csrf.php file */
class test_csrf extends PHPUnit_Framework_TestCase class csrfTest extends PHPUnit_Framework_TestCase
{ {
public function test_csrf1 () public function test_csrf1 ()
{ {
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the dbjson database */ /** Test the dbjson database */
class test_dbjson extends PHPUnit_Framework_TestCase class dbjsonTest extends PHPUnit_Framework_TestCase
{ {
public function test_insertOne1 () public function test_insertOne1 ()
{ {
+1 -1
View File
@@ -3,7 +3,7 @@
@package domframework @package domframework
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
class test_dblayer_{ENGINE} extends PHPUnit_Framework_TestCase class dblayerTest{ENGINE} extends PHPUnit_Framework_TestCase
{ {
// Test with column name 'group', 'object', 'where', 'with space' // Test with column name 'group', 'object', 'where', 'with space'
// Test with table name 'group', 'object', 'where', 'with space' // Test with table name 'group', 'object', 'where', 'with space'
+1 -1
View File
@@ -3,7 +3,7 @@
@package domframework @package domframework
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
class test_dblayerauthzgroups_sqlite extends PHPUnit_Framework_TestCase class dblayerauthzgroupsTest extends PHPUnit_Framework_TestCase
{ {
public $confs = array ( public $confs = array (
"sqlite" => array ( "sqlite" => array (
+1 -1
View File
@@ -3,7 +3,7 @@
@package domframework @package domframework
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
class test_dblayeroo_{ENGINE} extends PHPUnit_Framework_TestCase class dblayerooTest{ENGINE} extends PHPUnit_Framework_TestCase
{ {
// Test with column name 'group', 'object', 'where', 'with space' // Test with column name 'group', 'object', 'where', 'with space'
// Test with table name 'group', 'object', 'where', 'with space' // Test with table name 'group', 'object', 'where', 'with space'
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the domframework file part */ /** Test the domframework file part */
class test_file extends PHPUnit_Framework_TestCase class fileTest extends PHPUnit_Framework_TestCase
{ {
public function testinit () public function testinit ()
{ {
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the FTS */ /** Test the FTS */
class test_fts extends PHPUnit_Framework_TestCase class ftsTest extends PHPUnit_Framework_TestCase
{ {
public function test_tokenizerSearch0 () public function test_tokenizerSearch0 ()
{ {
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the GetOpts */ /** Test the GetOpts */
class test_getopts extends PHPUnit_Framework_TestCase class getoptsTest extends PHPUnit_Framework_TestCase
{ {
public function test_empty1 () public function test_empty1 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the outputjson.php file */ /** Test the outputjson.php file */
class test_inifile extends PHPUnit_Framework_TestCase class inifileTest extends PHPUnit_Framework_TestCase
{ {
public function testsetString001 () public function testsetString001 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the ipaddresses.php file */ /** Test the ipaddresses.php file */
class test_ipaddresses extends PHPUnit_Framework_TestCase class ipaddressesTest extends PHPUnit_Framework_TestCase
{ {
public function test_validIPAddress1 () public function test_validIPAddress1 ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the jwt.php file */ /** Test the jwt.php file */
class test_jwt extends PHPUnit_Framework_TestCase class jwtTest extends PHPUnit_Framework_TestCase
{ {
public function test_createKey_1 () public function test_createKey_1 ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the macaddresses.php file */ /** Test the macaddresses.php file */
class test_macaddresses extends PHPUnit_Framework_TestCase class macaddressesTest extends PHPUnit_Framework_TestCase
{ {
public function test_isMACAddress_1 () public function test_isMACAddress_1 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the mail.php file */ /** Test the mail.php file */
class test_mail extends PHPUnit_Framework_TestCase class mailTest extends PHPUnit_Framework_TestCase
{ {
public function test_setBodyText1 () public function test_setBodyText1 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the outputjson.php file */ /** Test the outputjson.php file */
class test_markdown extends PHPUnit_Framework_TestCase class markdownTest extends PHPUnit_Framework_TestCase
{ {
// TitleSeText // TitleSeText
public function testTitleSeText1 () public function testTitleSeText1 ()
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the outputdl.php file */ /** Test the outputdl.php file */
class test_outputdl extends PHPUnit_Framework_TestCase class outputdlTest extends PHPUnit_Framework_TestCase
{ {
public function test_outputdl_init () public function test_outputdl_init ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the outputhtml.php file */ /** Test the outputhtml.php file */
class test_outputhtml extends PHPUnit_Framework_TestCase class outputhtmlTest extends PHPUnit_Framework_TestCase
{ {
/** Entry null */ /** Entry null */
public function testlayout1 () public function testlayout1 ()
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the outputjson.php file */ /** Test the outputjson.php file */
class test_outputjson extends PHPUnit_Framework_TestCase class outputjsonTest extends PHPUnit_Framework_TestCase
{ {
/** Entry null */ /** Entry null */
public function testoutputjson1 () public function testoutputjson1 ()
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the password class /** Test the password class
*/ */
class test_password extends PHPUnit_Framework_TestCase class passwordTest extends PHPUnit_Framework_TestCase
{ {
public function test_cryptPasswd_1 () public function test_cryptPasswd_1 ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the queue.php file */ /** Test the queue.php file */
class test_queue extends PHPUnit_Framework_TestCase class queueTest extends PHPUnit_Framework_TestCase
{ {
public function test () public function test ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the queuefile.php file */ /** Test the queuefile.php file */
class test_queuefile extends PHPUnit_Framework_TestCase class queuefileTest extends PHPUnit_Framework_TestCase
{ {
public function test_clean () public function test_clean ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the ratelimit.php file */ /** Test the ratelimit.php file */
class test_ratelimit extends PHPUnit_Framework_TestCase class ratelimitTest extends PHPUnit_Framework_TestCase
{ {
public function test_ratelimit0 () public function test_ratelimit0 ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the ratelimitfile.php file */ /** Test the ratelimitfile.php file */
class test_ratelimitfile extends PHPUnit_Framework_TestCase class ratelimitfileTest extends PHPUnit_Framework_TestCase
{ {
public function test_ratelimitfile0 () public function test_ratelimitfile0 ()
{ {
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the mrobotstxt.txt file /** Test the mrobotstxt.txt file
*/ */
class test_model extends PHPUnit_Framework_TestCase class robotstxtTest extends PHPUnit_Framework_TestCase
{ {
// Empty Robots // Empty Robots
public function test_Construct_1 () public function test_Construct_1 ()
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the route.php file */ /** Test the route.php file */
class test_route extends PHPUnit_Framework_TestCase class routeTest extends PHPUnit_Framework_TestCase
{ {
/// RELATIVE /// /// RELATIVE ///
/** Entry null */ /** Entry null */
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the RSS */ /** Test the RSS */
class test_rss extends PHPUnit_Framework_TestCase class rssTest extends PHPUnit_Framework_TestCase
{ {
public function test_empty0 () public function test_empty0 ()
{ {
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the sitemap.php file /** Test the sitemap.php file
*/ */
class test_sitemap extends PHPUnit_Framework_TestCase class sitemapTest extends PHPUnit_Framework_TestCase
{ {
// Empty Sitemap // Empty Sitemap
public function test_EmptySitemap_1 () public function test_EmptySitemap_1 ()
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the TCP client */ /** Test the TCP client */
class test_tcpclient extends PHPUnit_Framework_TestCase class tcpclientTest extends PHPUnit_Framework_TestCase
{ {
public function test_GoogleIPv4 () public function test_GoogleIPv4 ()
{ {
+1 -1
View File
@@ -4,7 +4,7 @@
@author Dominique Fournier <dominique@fournier38.fr> */ @author Dominique Fournier <dominique@fournier38.fr> */
/** Test the userssql.php file */ /** Test the userssql.php file */
class test_userssql extends PHPUnit_Framework_TestCase class userssqlTest extends PHPUnit_Framework_TestCase
{ {
public function test_clean () public function test_clean ()
{ {
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the uuid.php file */ /** Test the uuid.php file */
class test_uuid extends PHPUnit_Framework_TestCase class uuidTest extends PHPUnit_Framework_TestCase
{ {
public function test_uuid1 () public function test_uuid1 ()
{ {
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
/** Test the Verify */ /** Test the Verify */
class test_verify extends PHPUnit_Framework_TestCase class verifyTest extends PHPUnit_Framework_TestCase
{ {
/////////////// ///////////////
// DATES // // DATES //
+1 -1
View File
@@ -5,7 +5,7 @@
*/ */
/** Test the domframework xdiff part */ /** Test the domframework xdiff part */
class test_xdiff extends PHPUnit_Framework_TestCase class xdiffTest extends PHPUnit_Framework_TestCase
{ {
// Declaration of $string1 and $string2 // Declaration of $string1 and $string2
// {{{ // {{{