Files
iTop/tests/php-unit-tests/unitary-tests/sources/Application/TestAutoload.php
Romain Quetiez ebd0136773 Merge remote-tracking branch 'origin/support/3.0' into support/3.1
# Conflicts:
#	tests/php-unit-tests/src/BaseTestCase/ItopTestCase.php
2023-08-17 18:36:34 +02:00

25 lines
503 B
PHP

<?php
/**
* @copyright Copyright (C) 2010-2023 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Test\UnitTest\Application;
use Combodo\iTop\Test\UnitTest\ItopDataTestCase;
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');
}
}