|
| $backupGlobals |
|
| $backupStaticAttributes |
|
| $runTestInSeparateProcess = false |
|
| $name = '' |
|
| $groups = [] |
|
| $tests = [] |
|
| $numTests = -1 |
|
| $testCase = false |
|
| $foundClasses = [] |
|
A TestSuite is a composite of Tests. It runs a collection of test cases.
◆ __construct()
PHPUnit\Framework\TestSuite::__construct |
( |
|
$theClass = '' , |
|
|
|
$name = '' |
|
) |
| |
Constructs a new TestSuite:
- PHPUnit\Framework\TestSuite() constructs an empty TestSuite.
- PHPUnit\Framework\TestSuite(ReflectionClass) constructs a TestSuite from the given class.
- PHPUnit\Framework\TestSuite(ReflectionClass, String) constructs a TestSuite from the given class with the given name.
- PHPUnit\Framework\TestSuite(String) either constructs a TestSuite from the given class (if the passed string is the name of an existing class) or constructs an empty TestSuite with the given name.
- Parameters
-
mixed | $theClass | |
string | $name | |
- Exceptions
-
◆ addTest()
PHPUnit\Framework\TestSuite::addTest |
( |
Test |
$test, |
|
|
|
$groups = [] |
|
) |
| |
Adds a test to the suite.
- Parameters
-
◆ addTestFile()
PHPUnit\Framework\TestSuite::addTestFile |
( |
|
$filename | ) |
|
Wraps both addTest()
and addTestSuite
as well as the separate import statements for the user's convenience.
If the named file cannot be read or there are no new tests that can be added, a PHPUnit\Framework\WarningTestCase
will be created instead, leaving the current test run untouched.
- Parameters
-
- Exceptions
-
◆ addTestFiles()
PHPUnit\Framework\TestSuite::addTestFiles |
( |
|
$filenames | ) |
|
Wrapper for addTestFile() that adds multiple test files.
- Parameters
-
array | Iterator | $filenames | |
- Exceptions
-
◆ addTestMethod()
PHPUnit\Framework\TestSuite::addTestMethod |
( |
ReflectionClass |
$class, |
|
|
ReflectionMethod |
$method |
|
) |
| |
|
protected |
- Parameters
-
ReflectionClass | $class | |
ReflectionMethod | $method | |
◆ addTestSuite()
PHPUnit\Framework\TestSuite::addTestSuite |
( |
|
$testClass | ) |
|
Adds the tests from the given class to the suite.
- Parameters
-
- Exceptions
-
◆ count()
PHPUnit\Framework\TestSuite::count |
( |
|
$preferCache = false | ) |
|
Counts the number of test cases that will be run by this test.
- Parameters
-
bool | $preferCache | Indicates if cache is preferred. |
- Returns
- int
◆ createResult()
PHPUnit\Framework\TestSuite::createResult |
( |
| ) |
|
|
protected |
◆ createTest()
static PHPUnit\Framework\TestSuite::createTest |
( |
ReflectionClass |
$theClass, |
|
|
|
$name |
|
) |
| |
|
static |
- Parameters
-
ReflectionClass | $theClass | |
string | $name | |
- Returns
- Test
- Exceptions
-
◆ getGroups()
PHPUnit\Framework\TestSuite::getGroups |
( |
| ) |
|
Returns the test groups of the suite.
- Returns
- array
◆ getIterator()
PHPUnit\Framework\TestSuite::getIterator |
( |
| ) |
|
◆ getName()
PHPUnit\Framework\TestSuite::getName |
( |
| ) |
|
Returns the name of the suite.
- Returns
- string
◆ incompleteTest()
static PHPUnit\Framework\TestSuite::incompleteTest |
( |
|
$class, |
|
|
|
$methodName, |
|
|
|
$message |
|
) |
| |
|
staticprotected |
◆ isTestMethod()
static PHPUnit\Framework\TestSuite::isTestMethod |
( |
ReflectionMethod |
$method | ) |
|
|
static |
◆ markTestSuiteSkipped()
PHPUnit\Framework\TestSuite::markTestSuiteSkipped |
( |
|
$message = '' | ) |
|
Mark the test suite as skipped.
- Parameters
-
- Exceptions
-
◆ run()
PHPUnit\Framework\TestSuite::run |
( |
TestResult |
$result = null | ) |
|
◆ runTest()
PHPUnit\Framework\TestSuite::runTest |
( |
Test |
$test, |
|
|
TestResult |
$result |
|
) |
| |
◆ setBackupGlobals()
PHPUnit\Framework\TestSuite::setBackupGlobals |
( |
|
$backupGlobals | ) |
|
◆ setBackupStaticAttributes()
PHPUnit\Framework\TestSuite::setBackupStaticAttributes |
( |
|
$backupStaticAttributes | ) |
|
- Parameters
-
bool | $backupStaticAttributes | |
◆ setBeStrictAboutChangesToGlobalState()
PHPUnit\Framework\TestSuite::setBeStrictAboutChangesToGlobalState |
( |
|
$beStrictAboutChangesToGlobalState | ) |
|
- Parameters
-
bool | $beStrictAboutChangesToGlobalState | |
◆ setGroupDetails()
PHPUnit\Framework\TestSuite::setGroupDetails |
( |
array |
$groups | ) |
|
Set tests groups of the test case
- Parameters
-
◆ setName()
PHPUnit\Framework\TestSuite::setName |
( |
|
$name | ) |
|
Sets the name of the suite.
- Parameters
-
◆ setRunTestInSeparateProcess()
PHPUnit\Framework\TestSuite::setRunTestInSeparateProcess |
( |
|
$runTestInSeparateProcess | ) |
|
- Parameters
-
bool | $runTestInSeparateProcess | |
- Exceptions
-
◆ setTests()
PHPUnit\Framework\TestSuite::setTests |
( |
array |
$tests | ) |
|
Set tests of the test suite
- Parameters
-
◆ setUp()
PHPUnit\Framework\TestSuite::setUp |
( |
| ) |
|
|
protected |
Template Method that is called before the tests of this test suite are run.
◆ skipTest()
static PHPUnit\Framework\TestSuite::skipTest |
( |
|
$class, |
|
|
|
$methodName, |
|
|
|
$message |
|
) |
| |
|
staticprotected |
- Parameters
-
string | $class | |
string | $methodName | |
string | $message | |
- Returns
- SkippedTestCase
◆ tearDown()
PHPUnit\Framework\TestSuite::tearDown |
( |
| ) |
|
|
protected |
Template Method that is called after the tests of this test suite have finished running.
◆ testAt()
PHPUnit\Framework\TestSuite::testAt |
( |
|
$index | ) |
|
Returns the test at the given index.
- Parameters
-
- Returns
- Test|false
◆ tests()
PHPUnit\Framework\TestSuite::tests |
( |
| ) |
|
Returns the tests as an enumeration.
- Returns
- array
◆ toString()
PHPUnit\Framework\TestSuite::toString |
( |
| ) |
|
◆ warning()
static PHPUnit\Framework\TestSuite::warning |
( |
|
$message | ) |
|
|
staticprotected |
The documentation for this class was generated from the following file:
- vendor/phpunit/phpunit/src/Framework/TestSuite.php