init
This commit is contained in:
13
vendor/codeception/base/tests/data/config_extends/codeception.common.yml
vendored
Normal file
13
vendor/codeception/base/tests/data/config_extends/codeception.common.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
paths:
|
||||
tests: tests
|
||||
log: tests/_output
|
||||
data: tests/_data
|
||||
support: tests/_support
|
||||
envs: tests/_envs
|
||||
settings:
|
||||
bootstrap: _bootstrap.php
|
||||
colors: true
|
||||
memory_limit: 2048M
|
||||
extensions:
|
||||
enabled:
|
||||
- Codeception\Extension\RunFailed
|
||||
2
vendor/codeception/base/tests/data/config_extends/codeception.yml
vendored
Normal file
2
vendor/codeception/base/tests/data/config_extends/codeception.yml
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
actor: Tester
|
||||
extends: codeception.common.yml
|
||||
2
vendor/codeception/base/tests/data/config_extends/tests/_output/.gitignore
vendored
Normal file
2
vendor/codeception/base/tests/data/config_extends/tests/_output/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
26
vendor/codeception/base/tests/data/config_extends/tests/_support/UnitTester.php
vendored
Normal file
26
vendor/codeception/base/tests/data/config_extends/tests/_support/UnitTester.php
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
|
||||
/**
|
||||
* 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 \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
|
||||
*
|
||||
* @SuppressWarnings(PHPMD)
|
||||
*/
|
||||
class UnitTester extends \Codeception\Actor
|
||||
{
|
||||
use _generated\UnitTesterActions;
|
||||
|
||||
/**
|
||||
* Define custom actions here
|
||||
*/
|
||||
}
|
||||
2
vendor/codeception/base/tests/data/config_extends/tests/_support/_generated/.gitignore
vendored
Normal file
2
vendor/codeception/base/tests/data/config_extends/tests/_support/_generated/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
3
vendor/codeception/base/tests/data/config_extends/tests/unit.suite.common.yml
vendored
Normal file
3
vendor/codeception/base/tests/data/config_extends/tests/unit.suite.common.yml
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
modules:
|
||||
enabled:
|
||||
- Asserts
|
||||
6
vendor/codeception/base/tests/data/config_extends/tests/unit.suite.yml
vendored
Normal file
6
vendor/codeception/base/tests/data/config_extends/tests/unit.suite.yml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# Codeception Test Suite Configuration
|
||||
#
|
||||
# Suite for unit (internal) tests.
|
||||
|
||||
class_name: UnitTester
|
||||
extends: unit.suite.common.yml
|
||||
9
vendor/codeception/base/tests/data/config_extends/tests/unit/UnitCest.php
vendored
Normal file
9
vendor/codeception/base/tests/data/config_extends/tests/unit/UnitCest.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
class UnitCest
|
||||
{
|
||||
public function successful(UnitTester $I)
|
||||
{
|
||||
$I->assertTrue(true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user