oxtotp/src/tests/unit/Modules/Application/Controller/d3_totp_UserControllerTest.php

28 regels
763 B
PHP

2019-08-08 23:50:09 +02:00
<?php
/**
2022-09-26 15:22:26 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2019-08-08 23:50:09 +02:00
*
2022-09-26 15:22:26 +02:00
* https://www.d3data.de
2019-08-08 23:50:09 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-09-26 15:22:26 +02:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
2019-08-08 23:50:09 +02:00
*/
2022-11-24 23:52:16 +01:00
declare(strict_types=1);
2019-08-08 23:50:09 +02:00
namespace D3\Totp\tests\unit\Modules\Application\Controller;
use D3\Totp\Modules\Application\Controller\d3_totp_UserController;
use D3\Totp\tests\unit\d3TotpUnitTestCase;
use OxidEsales\Eshop\Application\Controller\UserController;
2019-08-08 23:50:09 +02:00
class d3_totp_UserControllerTest extends d3TotpUnitTestCase
{
use d3_totp_getUserTestTrait;
2022-11-25 15:42:33 +01:00
protected $sControllerClass = UserController::class;
2022-09-30 21:06:30 +02:00
}