Tests are now compliant with php-cs-fixer (CamelCase for method, phpdoc valid)

This commit is contained in:
2023-04-13 22:22:46 +02:00
parent b017700d0a
commit 273db5f183
51 changed files with 3926 additions and 3637 deletions

View File

@@ -1,21 +1,24 @@
<?php
/** DomFramework - Tests
* @package domframework
* @author Dominique Fournier <dominique@fournier38.fr>
* @license BSD
*/
/**
* DomFramework - Tests
* @package domframework
* @author Dominique Fournier <dominique@fournier38.fr>
* @license BSD
*/
namespace Domframework\Tests;
use Domframework\Cachefile;
/** Test the Cachefile.php file */
/**
* Test the Cachefile.php file
*/
class CachefileTest extends \PHPUnit_Framework_TestCase
{
public function testInit()
{
// Removing the cache file if it previously exists
// Removing the cache file if it previously exists
exec("rm -rf /tmp/cache");
}