mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
30 lines
603 B
PHP
30 lines
603 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2022 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Test\UnitTest\Application;
|
|
|
|
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');
|
|
}
|
|
}
|