/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
tests/Integration/IntegrationTestCase.php
33 строки
735 B
Allon Moritz
Introduce an Ldap factory in the authentication plugin (#39661)
28 янв 2023, 04:44
Не верифицирован
28 янв 2023, 04:44
05210a3
Код
Авторство
О чём код?
<?php /** * @package Joomla.UnitTest * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt * @link http://www.phpunit.de/manual/current/en/installation.html */ namespace Joomla\Tests\Integration; /** * Base Integration Test case for common behavior across integration tests * * @since 4.0.0 */ abstract class IntegrationTestCase extends \PHPUnit\Framework\TestCase { /** * * @return void * @since 4.0.0 */ protected function setUp(): void { parent::setUp(); if ($this instanceof DBTestInterface) { DBTestHelper::setupTest($this); } } }