N°5608 - Move test files to corresponding directories after branch rebase

This commit is contained in:
Molkobain
2023-01-06 18:35:48 +01:00
parent 36f8e58e25
commit fbc0a898ae
4 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* @copyright Copyright (C) 2010-2022 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
use Combodo\iTop\Test\UnitTest\ItopDataTestCase;
/**
* @runTestsInSeparateProcesses
* @preserveGlobalState disabled
* @backupGlobals disabled
*/
class TestAutoload extends ItopDataTestCase
{
/**
*/
public function testAutoloader()
{
if (class_exists('Composer\InstalledVersions')) {
$this->assertTrue(true);
return;
}
$this->assertTrue(false, 'You should run composer install on the faulty module');
}
}