29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-05-28 07:53:37 +00:00
cms/tests/Codeception/_support/FunctionalTester.php
Allon Moritz 967d6552fd
[4.2] Convert tests to PSR-12 (#38161)
* Convert tests to psr 12 where possible

* fix rules

* revert ignore
2022-06-28 09:43:33 +02:00

43 lines
962 B
PHP

<?php
/**
* @package Joomla.Tests
* @subpackage FunctionalTester
*
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// phpcs:ignoreFile
use Codeception\Actor;
use Codeception\Lib\Friend;
/**
* Functional Tester global class for entry point.
*
* Inherited Methods.
*
* @method void wantToTest($text)
* @method void wantTo($text)
* @method void execute($callable)
* @method void expectTo($prediction)
* @method void expect($prediction)
* @method void amGoingTo($argumentation)
* @method void am($role)
* @method void lookForwardTo($achieveValue)
* @method void comment($description)
* @method Friend haveFriend($name, $actorClass = NULL)
*
* @SuppressWarnings(PHPMD)
*
* @since 3.7.3
*/
class FunctionalTester extends Actor
{
use _generated\FunctionalTesterActions;
/**
* Define custom actions here
*/
}