This commit is contained in:
2020-10-06 14:27:47 +07:00
commit 586be80cf6
16613 changed files with 3274099 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<?php
namespace Codeception\Test\Interfaces;
interface Dependent
{
public function fetchDependencies();
}

View File

@@ -0,0 +1,9 @@
<?php
namespace Codeception\Test\Interfaces;
interface Descriptive extends \PHPUnit\Framework\SelfDescribing
{
public function getFileName();
public function getSignature();
}

View File

@@ -0,0 +1,9 @@
<?php
namespace Codeception\Test\Interfaces;
/**
* TestCases that do not follow OOP
*/
interface Plain
{
}

View File

@@ -0,0 +1,12 @@
<?php
namespace Codeception\Test\Interfaces;
interface Reported
{
/**
* Field values for XML/JSON/TAP reports
*
* @return array
*/
public function getReportFields();
}

View File

@@ -0,0 +1,18 @@
<?php
namespace Codeception\Test\Interfaces;
interface ScenarioDriven
{
public function getFeature();
/**
* @return \Codeception\Scenario
*/
public function getScenario();
public function getScenarioText($format = 'text');
public function preload();
public function getSourceCode();
}

View File

@@ -0,0 +1,10 @@
<?php
namespace Codeception\Test\Interfaces;
interface StrictCoverage
{
public function getLinesToBeCovered();
public function getLinesToBeUsed();
}