N°5611 - Fix missing composer files in itop-oauth-client

This commit is contained in:
Eric Espie
2022-11-24 14:27:42 +01:00
parent d292a6b0c3
commit 6d0c46595d
3 changed files with 29 additions and 0 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');
}
}