mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-19 16:48:42 +02:00
Merge remote-tracking branch 'origin/support/3.0' into develop
This commit is contained in:
27
test/application/TestAutoload.php
Normal file
27
test/application/TestAutoload.php
Normal 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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user