Tests are now compliant with php-cs-fixer (CamelCase for method, phpdoc valid)
This commit is contained in:
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user