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