Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Configuration.php

class Configuration

Same name in this branch
  1. 11.1.x vendor/open-telemetry/sdk/Common/Configuration/Configuration.php \OpenTelemetry\SDK\Common\Configuration\Configuration
  2. 11.1.x vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Configuration.php \PHPUnit\TextUI\XmlConfiguration\Configuration
  3. 11.1.x vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Configuration.php \PHPUnit\TextUI\CliArguments\Configuration

@psalm-immutable

@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit

Hierarchy

  • class \PHPUnit\TextUI\Configuration\Configuration

Expanded class hierarchy of Configuration

13 files declare their use of Configuration
Application.php in vendor/phpunit/phpunit/src/TextUI/Application.php
CodeCoverage.php in vendor/phpunit/phpunit/src/Runner/CodeCoverage.php
Configured.php in vendor/phpunit/phpunit/src/Event/Events/TestRunner/Configured.php
DispatchingEmitter.php in vendor/phpunit/phpunit/src/Event/Emitter/DispatchingEmitter.php
Emitter.php in vendor/phpunit/phpunit/src/Event/Emitter/Emitter.php

... See full list

159 string references to 'Configuration'
action_settings.yml in core/modules/system/migrations/action_settings.yml
core/modules/system/migrations/action_settings.yml
Application::writeRuntimeInformation in vendor/phpunit/phpunit/src/TextUI/Application.php
block_content_body_field.yml in core/modules/block_content/migrations/block_content_body_field.yml
core/modules/block_content/migrations/block_content_body_field.yml
block_content_entity_display.yml in core/modules/block_content/migrations/block_content_entity_display.yml
core/modules/block_content/migrations/block_content_entity_display.yml
block_content_entity_form_display.yml in core/modules/block_content/migrations/block_content_entity_form_display.yml
core/modules/block_content/migrations/block_content_entity_form_display.yml

... See full list

File

vendor/phpunit/phpunit/src/TextUI/Configuration/Configuration.php, line 17

Namespace

PHPUnit\TextUI\Configuration
View source
final class Configuration {
    public const COLOR_NEVER = 'never';
    public const COLOR_AUTO = 'auto';
    public const COLOR_ALWAYS = 'always';
    public const COLOR_DEFAULT = self::COLOR_NEVER;
    
    /**
     * @psalm-var list<non-empty-string>
     */
    private readonly array $cliArguments;
    private readonly ?string $configurationFile;
    private readonly ?string $bootstrap;
    private readonly bool $cacheResult;
    private readonly ?string $cacheDirectory;
    private readonly ?string $coverageCacheDirectory;
    private readonly Source $source;
    private readonly bool $pathCoverage;
    private readonly ?string $coverageClover;
    private readonly ?string $coverageCobertura;
    private readonly ?string $coverageCrap4j;
    private readonly int $coverageCrap4jThreshold;
    private readonly ?string $coverageHtml;
    private readonly int $coverageHtmlLowUpperBound;
    private readonly int $coverageHtmlHighLowerBound;
    private readonly string $coverageHtmlColorSuccessLow;
    private readonly string $coverageHtmlColorSuccessMedium;
    private readonly string $coverageHtmlColorSuccessHigh;
    private readonly string $coverageHtmlColorWarning;
    private readonly string $coverageHtmlColorDanger;
    private readonly ?string $coverageHtmlCustomCssFile;
    private readonly ?string $coveragePhp;
    private readonly ?string $coverageText;
    private readonly bool $coverageTextShowUncoveredFiles;
    private readonly bool $coverageTextShowOnlySummary;
    private readonly ?string $coverageXml;
    private readonly string $testResultCacheFile;
    private readonly bool $ignoreDeprecatedCodeUnitsFromCodeCoverage;
    private readonly bool $disableCodeCoverageIgnore;
    private readonly bool $failOnDeprecation;
    private readonly bool $failOnPhpunitDeprecation;
    private readonly bool $failOnEmptyTestSuite;
    private readonly bool $failOnIncomplete;
    private readonly bool $failOnNotice;
    private readonly bool $failOnRisky;
    private readonly bool $failOnSkipped;
    private readonly bool $failOnWarning;
    private readonly bool $stopOnDefect;
    private readonly bool $stopOnDeprecation;
    private readonly bool $stopOnError;
    private readonly bool $stopOnFailure;
    private readonly bool $stopOnIncomplete;
    private readonly bool $stopOnNotice;
    private readonly bool $stopOnRisky;
    private readonly bool $stopOnSkipped;
    private readonly bool $stopOnWarning;
    private readonly bool $outputToStandardErrorStream;
    private readonly int $columns;
    private readonly bool $noExtensions;
    
    /**
     * @psalm-var ?non-empty-string
     */
    private readonly ?string $pharExtensionDirectory;
    
    /**
     * @psalm-var list<array{className: class-string, parameters: array<string, string>}>
     */
    private readonly array $extensionBootstrappers;
    private readonly bool $backupGlobals;
    private readonly bool $backupStaticProperties;
    private readonly bool $beStrictAboutChangesToGlobalState;
    private readonly bool $colors;
    private readonly bool $processIsolation;
    private readonly bool $enforceTimeLimit;
    private readonly int $defaultTimeLimit;
    private readonly int $timeoutForSmallTests;
    private readonly int $timeoutForMediumTests;
    private readonly int $timeoutForLargeTests;
    private readonly bool $reportUselessTests;
    private readonly bool $strictCoverage;
    private readonly bool $disallowTestOutput;
    private readonly bool $displayDetailsOnIncompleteTests;
    private readonly bool $displayDetailsOnSkippedTests;
    private readonly bool $displayDetailsOnTestsThatTriggerDeprecations;
    private readonly bool $displayDetailsOnPhpunitDeprecations;
    private readonly bool $displayDetailsOnTestsThatTriggerErrors;
    private readonly bool $displayDetailsOnTestsThatTriggerNotices;
    private readonly bool $displayDetailsOnTestsThatTriggerWarnings;
    private readonly bool $reverseDefectList;
    private readonly bool $requireCoverageMetadata;
    private readonly bool $registerMockObjectsFromTestArgumentsRecursively;
    private readonly bool $noProgress;
    private readonly bool $noResults;
    private readonly bool $noOutput;
    private readonly int $executionOrder;
    private readonly int $executionOrderDefects;
    private readonly bool $resolveDependencies;
    private readonly ?string $logfileTeamcity;
    private readonly ?string $logfileJunit;
    private readonly ?string $logfileTestdoxHtml;
    private readonly ?string $logfileTestdoxText;
    private readonly ?string $logEventsText;
    private readonly ?string $logEventsVerboseText;
    private readonly ?array $testsCovering;
    private readonly ?array $testsUsing;
    private readonly bool $teamCityOutput;
    private readonly bool $testDoxOutput;
    private readonly ?string $filter;
    private readonly ?array $groups;
    private readonly ?array $excludeGroups;
    private readonly int $randomOrderSeed;
    private readonly bool $includeUncoveredFiles;
    private readonly TestSuiteCollection $testSuite;
    private readonly string $includeTestSuite;
    private readonly string $excludeTestSuite;
    private readonly ?string $defaultTestSuite;
    
    /**
     * @psalm-var non-empty-list<non-empty-string>
     */
    private readonly array $testSuffixes;
    private readonly Php $php;
    private readonly bool $controlGarbageCollector;
    private readonly int $numberOfTestsBeforeGarbageCollection;
    private readonly ?string $generateBaseline;
    private readonly bool $debug;
    
    /**
     * @psalm-param list<non-empty-string> $cliArguments
     * @psalm-param ?non-empty-string $pharExtensionDirectory
     * @psalm-param non-empty-list<non-empty-string> $testSuffixes
     * @psalm-param list<array{className: class-string, parameters: array<string, string>}> $extensionBootstrappers
     */
    public function __construct(array $cliArguments, ?string $configurationFile, ?string $bootstrap, bool $cacheResult, ?string $cacheDirectory, ?string $coverageCacheDirectory, Source $source, string $testResultCacheFile, ?string $coverageClover, ?string $coverageCobertura, ?string $coverageCrap4j, int $coverageCrap4jThreshold, ?string $coverageHtml, int $coverageHtmlLowUpperBound, int $coverageHtmlHighLowerBound, string $coverageHtmlColorSuccessLow, string $coverageHtmlColorSuccessMedium, string $coverageHtmlColorSuccessHigh, string $coverageHtmlColorWarning, string $coverageHtmlColorDanger, ?string $coverageHtmlCustomCssFile, ?string $coveragePhp, ?string $coverageText, bool $coverageTextShowUncoveredFiles, bool $coverageTextShowOnlySummary, ?string $coverageXml, bool $pathCoverage, bool $ignoreDeprecatedCodeUnitsFromCodeCoverage, bool $disableCodeCoverageIgnore, bool $failOnDeprecation, bool $failOnPhpunitDeprecation, bool $failOnEmptyTestSuite, bool $failOnIncomplete, bool $failOnNotice, bool $failOnRisky, bool $failOnSkipped, bool $failOnWarning, bool $stopOnDefect, bool $stopOnDeprecation, bool $stopOnError, bool $stopOnFailure, bool $stopOnIncomplete, bool $stopOnNotice, bool $stopOnRisky, bool $stopOnSkipped, bool $stopOnWarning, bool $outputToStandardErrorStream, int|string $columns, bool $noExtensions, ?string $pharExtensionDirectory, array $extensionBootstrappers, bool $backupGlobals, bool $backupStaticProperties, bool $beStrictAboutChangesToGlobalState, bool $colors, bool $processIsolation, bool $enforceTimeLimit, int $defaultTimeLimit, int $timeoutForSmallTests, int $timeoutForMediumTests, int $timeoutForLargeTests, bool $reportUselessTests, bool $strictCoverage, bool $disallowTestOutput, bool $displayDetailsOnIncompleteTests, bool $displayDetailsOnSkippedTests, bool $displayDetailsOnTestsThatTriggerDeprecations, bool $displayDetailsOnPhpunitDeprecations, bool $displayDetailsOnTestsThatTriggerErrors, bool $displayDetailsOnTestsThatTriggerNotices, bool $displayDetailsOnTestsThatTriggerWarnings, bool $reverseDefectList, bool $requireCoverageMetadata, bool $registerMockObjectsFromTestArgumentsRecursively, bool $noProgress, bool $noResults, bool $noOutput, int $executionOrder, int $executionOrderDefects, bool $resolveDependencies, ?string $logfileTeamcity, ?string $logfileJunit, ?string $logfileTestdoxHtml, ?string $logfileTestdoxText, ?string $logEventsText, ?string $logEventsVerboseText, bool $teamCityOutput, bool $testDoxOutput, ?array $testsCovering, ?array $testsUsing, ?string $filter, ?array $groups, ?array $excludeGroups, int $randomOrderSeed, bool $includeUncoveredFiles, TestSuiteCollection $testSuite, string $includeTestSuite, string $excludeTestSuite, ?string $defaultTestSuite, array $testSuffixes, Php $php, bool $controlGarbageCollector, int $numberOfTestsBeforeGarbageCollection, ?string $generateBaseline, bool $debug) {
        $this->cliArguments = $cliArguments;
        $this->configurationFile = $configurationFile;
        $this->bootstrap = $bootstrap;
        $this->cacheResult = $cacheResult;
        $this->cacheDirectory = $cacheDirectory;
        $this->coverageCacheDirectory = $coverageCacheDirectory;
        $this->source = $source;
        $this->testResultCacheFile = $testResultCacheFile;
        $this->coverageClover = $coverageClover;
        $this->coverageCobertura = $coverageCobertura;
        $this->coverageCrap4j = $coverageCrap4j;
        $this->coverageCrap4jThreshold = $coverageCrap4jThreshold;
        $this->coverageHtml = $coverageHtml;
        $this->coverageHtmlLowUpperBound = $coverageHtmlLowUpperBound;
        $this->coverageHtmlHighLowerBound = $coverageHtmlHighLowerBound;
        $this->coverageHtmlColorSuccessLow = $coverageHtmlColorSuccessLow;
        $this->coverageHtmlColorSuccessMedium = $coverageHtmlColorSuccessMedium;
        $this->coverageHtmlColorSuccessHigh = $coverageHtmlColorSuccessHigh;
        $this->coverageHtmlColorWarning = $coverageHtmlColorWarning;
        $this->coverageHtmlColorDanger = $coverageHtmlColorDanger;
        $this->coverageHtmlCustomCssFile = $coverageHtmlCustomCssFile;
        $this->coveragePhp = $coveragePhp;
        $this->coverageText = $coverageText;
        $this->coverageTextShowUncoveredFiles = $coverageTextShowUncoveredFiles;
        $this->coverageTextShowOnlySummary = $coverageTextShowOnlySummary;
        $this->coverageXml = $coverageXml;
        $this->pathCoverage = $pathCoverage;
        $this->ignoreDeprecatedCodeUnitsFromCodeCoverage = $ignoreDeprecatedCodeUnitsFromCodeCoverage;
        $this->disableCodeCoverageIgnore = $disableCodeCoverageIgnore;
        $this->failOnDeprecation = $failOnDeprecation;
        $this->failOnPhpunitDeprecation = $failOnPhpunitDeprecation;
        $this->failOnEmptyTestSuite = $failOnEmptyTestSuite;
        $this->failOnIncomplete = $failOnIncomplete;
        $this->failOnNotice = $failOnNotice;
        $this->failOnRisky = $failOnRisky;
        $this->failOnSkipped = $failOnSkipped;
        $this->failOnWarning = $failOnWarning;
        $this->stopOnDefect = $stopOnDefect;
        $this->stopOnDeprecation = $stopOnDeprecation;
        $this->stopOnError = $stopOnError;
        $this->stopOnFailure = $stopOnFailure;
        $this->stopOnIncomplete = $stopOnIncomplete;
        $this->stopOnNotice = $stopOnNotice;
        $this->stopOnRisky = $stopOnRisky;
        $this->stopOnSkipped = $stopOnSkipped;
        $this->stopOnWarning = $stopOnWarning;
        $this->outputToStandardErrorStream = $outputToStandardErrorStream;
        $this->columns = $columns;
        $this->noExtensions = $noExtensions;
        $this->pharExtensionDirectory = $pharExtensionDirectory;
        $this->extensionBootstrappers = $extensionBootstrappers;
        $this->backupGlobals = $backupGlobals;
        $this->backupStaticProperties = $backupStaticProperties;
        $this->beStrictAboutChangesToGlobalState = $beStrictAboutChangesToGlobalState;
        $this->colors = $colors;
        $this->processIsolation = $processIsolation;
        $this->enforceTimeLimit = $enforceTimeLimit;
        $this->defaultTimeLimit = $defaultTimeLimit;
        $this->timeoutForSmallTests = $timeoutForSmallTests;
        $this->timeoutForMediumTests = $timeoutForMediumTests;
        $this->timeoutForLargeTests = $timeoutForLargeTests;
        $this->reportUselessTests = $reportUselessTests;
        $this->strictCoverage = $strictCoverage;
        $this->disallowTestOutput = $disallowTestOutput;
        $this->displayDetailsOnIncompleteTests = $displayDetailsOnIncompleteTests;
        $this->displayDetailsOnSkippedTests = $displayDetailsOnSkippedTests;
        $this->displayDetailsOnTestsThatTriggerDeprecations = $displayDetailsOnTestsThatTriggerDeprecations;
        $this->displayDetailsOnPhpunitDeprecations = $displayDetailsOnPhpunitDeprecations;
        $this->displayDetailsOnTestsThatTriggerErrors = $displayDetailsOnTestsThatTriggerErrors;
        $this->displayDetailsOnTestsThatTriggerNotices = $displayDetailsOnTestsThatTriggerNotices;
        $this->displayDetailsOnTestsThatTriggerWarnings = $displayDetailsOnTestsThatTriggerWarnings;
        $this->reverseDefectList = $reverseDefectList;
        $this->requireCoverageMetadata = $requireCoverageMetadata;
        $this->registerMockObjectsFromTestArgumentsRecursively = $registerMockObjectsFromTestArgumentsRecursively;
        $this->noProgress = $noProgress;
        $this->noResults = $noResults;
        $this->noOutput = $noOutput;
        $this->executionOrder = $executionOrder;
        $this->executionOrderDefects = $executionOrderDefects;
        $this->resolveDependencies = $resolveDependencies;
        $this->logfileTeamcity = $logfileTeamcity;
        $this->logfileJunit = $logfileJunit;
        $this->logfileTestdoxHtml = $logfileTestdoxHtml;
        $this->logfileTestdoxText = $logfileTestdoxText;
        $this->logEventsText = $logEventsText;
        $this->logEventsVerboseText = $logEventsVerboseText;
        $this->teamCityOutput = $teamCityOutput;
        $this->testDoxOutput = $testDoxOutput;
        $this->testsCovering = $testsCovering;
        $this->testsUsing = $testsUsing;
        $this->filter = $filter;
        $this->groups = $groups;
        $this->excludeGroups = $excludeGroups;
        $this->randomOrderSeed = $randomOrderSeed;
        $this->includeUncoveredFiles = $includeUncoveredFiles;
        $this->testSuite = $testSuite;
        $this->includeTestSuite = $includeTestSuite;
        $this->excludeTestSuite = $excludeTestSuite;
        $this->defaultTestSuite = $defaultTestSuite;
        $this->testSuffixes = $testSuffixes;
        $this->php = $php;
        $this->controlGarbageCollector = $controlGarbageCollector;
        $this->numberOfTestsBeforeGarbageCollection = $numberOfTestsBeforeGarbageCollection;
        $this->generateBaseline = $generateBaseline;
        $this->debug = $debug;
    }
    
    /**
     * @psalm-assert-if-true !empty $this->cliArguments
     */
    public function hasCliArguments() : bool {
        return !empty($this->cliArguments);
    }
    
    /**
     * @psalm-return list<non-empty-string>
     */
    public function cliArguments() : array {
        return $this->cliArguments;
    }
    
    /**
     * @psalm-assert-if-true !empty $this->cliArguments
     *
     * @deprecated Use hasCliArguments() instead
     */
    public function hasCliArgument() : bool {
        return !empty($this->cliArguments);
    }
    
    /**
     * @throws NoCliArgumentException
     *
     * @return non-empty-string
     *
     * @deprecated Use cliArguments()[0] instead
     */
    public function cliArgument() : string {
        if (!$this->hasCliArguments()) {
            throw new NoCliArgumentException();
        }
        return $this->cliArguments[0];
    }
    
    /**
     * @psalm-assert-if-true !null $this->configurationFile
     */
    public function hasConfigurationFile() : bool {
        return $this->configurationFile !== null;
    }
    
    /**
     * @throws NoConfigurationFileException
     */
    public function configurationFile() : string {
        if (!$this->hasConfigurationFile()) {
            throw new NoConfigurationFileException();
        }
        return $this->configurationFile;
    }
    
    /**
     * @psalm-assert-if-true !null $this->bootstrap
     */
    public function hasBootstrap() : bool {
        return $this->bootstrap !== null;
    }
    
    /**
     * @throws NoBootstrapException
     */
    public function bootstrap() : string {
        if (!$this->hasBootstrap()) {
            throw new NoBootstrapException();
        }
        return $this->bootstrap;
    }
    public function cacheResult() : bool {
        return $this->cacheResult;
    }
    
    /**
     * @psalm-assert-if-true !null $this->cacheDirectory
     */
    public function hasCacheDirectory() : bool {
        return $this->cacheDirectory !== null;
    }
    
    /**
     * @throws NoCacheDirectoryException
     */
    public function cacheDirectory() : string {
        if (!$this->hasCacheDirectory()) {
            throw new NoCacheDirectoryException();
        }
        return $this->cacheDirectory;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageCacheDirectory
     */
    public function hasCoverageCacheDirectory() : bool {
        return $this->coverageCacheDirectory !== null;
    }
    
    /**
     * @throws NoCoverageCacheDirectoryException
     */
    public function coverageCacheDirectory() : string {
        if (!$this->hasCoverageCacheDirectory()) {
            throw new NoCoverageCacheDirectoryException();
        }
        return $this->coverageCacheDirectory;
    }
    public function source() : Source {
        return $this->source;
    }
    
    /**
     * @deprecated Use source()->restrictDeprecations() instead
     */
    public function restrictDeprecations() : bool {
        return $this->source()
            ->restrictDeprecations();
    }
    
    /**
     * @deprecated Use source()->restrictNotices() instead
     */
    public function restrictNotices() : bool {
        return $this->source()
            ->restrictNotices();
    }
    
    /**
     * @deprecated Use source()->restrictWarnings() instead
     */
    public function restrictWarnings() : bool {
        return $this->source()
            ->restrictWarnings();
    }
    
    /**
     * @deprecated Use source()->notEmpty() instead
     */
    public function hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport() : bool {
        return $this->source
            ->notEmpty();
    }
    
    /**
     * @deprecated Use source()->includeDirectories() instead
     */
    public function coverageIncludeDirectories() : FilterDirectoryCollection {
        return $this->source()
            ->includeDirectories();
    }
    
    /**
     * @deprecated Use source()->includeFiles() instead
     */
    public function coverageIncludeFiles() : FileCollection {
        return $this->source()
            ->includeFiles();
    }
    
    /**
     * @deprecated Use source()->excludeDirectories() instead
     */
    public function coverageExcludeDirectories() : FilterDirectoryCollection {
        return $this->source()
            ->excludeDirectories();
    }
    
    /**
     * @deprecated Use source()->excludeFiles() instead
     */
    public function coverageExcludeFiles() : FileCollection {
        return $this->source()
            ->excludeFiles();
    }
    public function testResultCacheFile() : string {
        return $this->testResultCacheFile;
    }
    public function ignoreDeprecatedCodeUnitsFromCodeCoverage() : bool {
        return $this->ignoreDeprecatedCodeUnitsFromCodeCoverage;
    }
    public function disableCodeCoverageIgnore() : bool {
        return $this->disableCodeCoverageIgnore;
    }
    public function pathCoverage() : bool {
        return $this->pathCoverage;
    }
    public function hasCoverageReport() : bool {
        return $this->hasCoverageClover() || $this->hasCoverageCobertura() || $this->hasCoverageCrap4j() || $this->hasCoverageHtml() || $this->hasCoveragePhp() || $this->hasCoverageText() || $this->hasCoverageXml();
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageClover
     */
    public function hasCoverageClover() : bool {
        return $this->coverageClover !== null;
    }
    
    /**
     * @throws CodeCoverageReportNotConfiguredException
     */
    public function coverageClover() : string {
        if (!$this->hasCoverageClover()) {
            throw new CodeCoverageReportNotConfiguredException();
        }
        return $this->coverageClover;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageCobertura
     */
    public function hasCoverageCobertura() : bool {
        return $this->coverageCobertura !== null;
    }
    
    /**
     * @throws CodeCoverageReportNotConfiguredException
     */
    public function coverageCobertura() : string {
        if (!$this->hasCoverageCobertura()) {
            throw new CodeCoverageReportNotConfiguredException();
        }
        return $this->coverageCobertura;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageCrap4j
     */
    public function hasCoverageCrap4j() : bool {
        return $this->coverageCrap4j !== null;
    }
    
    /**
     * @throws CodeCoverageReportNotConfiguredException
     */
    public function coverageCrap4j() : string {
        if (!$this->hasCoverageCrap4j()) {
            throw new CodeCoverageReportNotConfiguredException();
        }
        return $this->coverageCrap4j;
    }
    public function coverageCrap4jThreshold() : int {
        return $this->coverageCrap4jThreshold;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageHtml
     */
    public function hasCoverageHtml() : bool {
        return $this->coverageHtml !== null;
    }
    
    /**
     * @throws CodeCoverageReportNotConfiguredException
     */
    public function coverageHtml() : string {
        if (!$this->hasCoverageHtml()) {
            throw new CodeCoverageReportNotConfiguredException();
        }
        return $this->coverageHtml;
    }
    public function coverageHtmlLowUpperBound() : int {
        return $this->coverageHtmlLowUpperBound;
    }
    public function coverageHtmlHighLowerBound() : int {
        return $this->coverageHtmlHighLowerBound;
    }
    public function coverageHtmlColorSuccessLow() : string {
        return $this->coverageHtmlColorSuccessLow;
    }
    public function coverageHtmlColorSuccessMedium() : string {
        return $this->coverageHtmlColorSuccessMedium;
    }
    public function coverageHtmlColorSuccessHigh() : string {
        return $this->coverageHtmlColorSuccessHigh;
    }
    public function coverageHtmlColorWarning() : string {
        return $this->coverageHtmlColorWarning;
    }
    public function coverageHtmlColorDanger() : string {
        return $this->coverageHtmlColorDanger;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageHtmlCustomCssFile
     */
    public function hasCoverageHtmlCustomCssFile() : bool {
        return $this->coverageHtmlCustomCssFile !== null;
    }
    
    /**
     * @throws NoCustomCssFileException
     */
    public function coverageHtmlCustomCssFile() : string {
        if (!$this->hasCoverageHtmlCustomCssFile()) {
            throw new NoCustomCssFileException();
        }
        return $this->coverageHtmlCustomCssFile;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coveragePhp
     */
    public function hasCoveragePhp() : bool {
        return $this->coveragePhp !== null;
    }
    
    /**
     * @throws CodeCoverageReportNotConfiguredException
     */
    public function coveragePhp() : string {
        if (!$this->hasCoveragePhp()) {
            throw new CodeCoverageReportNotConfiguredException();
        }
        return $this->coveragePhp;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageText
     */
    public function hasCoverageText() : bool {
        return $this->coverageText !== null;
    }
    
    /**
     * @throws CodeCoverageReportNotConfiguredException
     */
    public function coverageText() : string {
        if (!$this->hasCoverageText()) {
            throw new CodeCoverageReportNotConfiguredException();
        }
        return $this->coverageText;
    }
    public function coverageTextShowUncoveredFiles() : bool {
        return $this->coverageTextShowUncoveredFiles;
    }
    public function coverageTextShowOnlySummary() : bool {
        return $this->coverageTextShowOnlySummary;
    }
    
    /**
     * @psalm-assert-if-true !null $this->coverageXml
     */
    public function hasCoverageXml() : bool {
        return $this->coverageXml !== null;
    }
    
    /**
     * @throws CodeCoverageReportNotConfiguredException
     */
    public function coverageXml() : string {
        if (!$this->hasCoverageXml()) {
            throw new CodeCoverageReportNotConfiguredException();
        }
        return $this->coverageXml;
    }
    public function failOnDeprecation() : bool {
        return $this->failOnDeprecation;
    }
    public function failOnPhpunitDeprecation() : bool {
        return $this->failOnPhpunitDeprecation;
    }
    public function failOnEmptyTestSuite() : bool {
        return $this->failOnEmptyTestSuite;
    }
    public function failOnIncomplete() : bool {
        return $this->failOnIncomplete;
    }
    public function failOnNotice() : bool {
        return $this->failOnNotice;
    }
    public function failOnRisky() : bool {
        return $this->failOnRisky;
    }
    public function failOnSkipped() : bool {
        return $this->failOnSkipped;
    }
    public function failOnWarning() : bool {
        return $this->failOnWarning;
    }
    public function stopOnDefect() : bool {
        return $this->stopOnDefect;
    }
    public function stopOnDeprecation() : bool {
        return $this->stopOnDeprecation;
    }
    public function stopOnError() : bool {
        return $this->stopOnError;
    }
    public function stopOnFailure() : bool {
        return $this->stopOnFailure;
    }
    public function stopOnIncomplete() : bool {
        return $this->stopOnIncomplete;
    }
    public function stopOnNotice() : bool {
        return $this->stopOnNotice;
    }
    public function stopOnRisky() : bool {
        return $this->stopOnRisky;
    }
    public function stopOnSkipped() : bool {
        return $this->stopOnSkipped;
    }
    public function stopOnWarning() : bool {
        return $this->stopOnWarning;
    }
    public function outputToStandardErrorStream() : bool {
        return $this->outputToStandardErrorStream;
    }
    public function columns() : int {
        return $this->columns;
    }
    
    /**
     * @deprecated Use noExtensions() instead
     */
    public function loadPharExtensions() : bool {
        return $this->noExtensions;
    }
    public function noExtensions() : bool {
        return $this->noExtensions;
    }
    
    /**
     * @psalm-assert-if-true !null $this->pharExtensionDirectory
     */
    public function hasPharExtensionDirectory() : bool {
        return $this->pharExtensionDirectory !== null;
    }
    
    /**
     * @psalm-return non-empty-string
     *
     * @throws NoPharExtensionDirectoryException
     */
    public function pharExtensionDirectory() : string {
        if (!$this->hasPharExtensionDirectory()) {
            throw new NoPharExtensionDirectoryException();
        }
        return $this->pharExtensionDirectory;
    }
    
    /**
     * @psalm-return list<array{className: class-string, parameters: array<string, string>}>
     */
    public function extensionBootstrappers() : array {
        return $this->extensionBootstrappers;
    }
    public function backupGlobals() : bool {
        return $this->backupGlobals;
    }
    public function backupStaticProperties() : bool {
        return $this->backupStaticProperties;
    }
    public function beStrictAboutChangesToGlobalState() : bool {
        return $this->beStrictAboutChangesToGlobalState;
    }
    public function colors() : bool {
        return $this->colors;
    }
    public function processIsolation() : bool {
        return $this->processIsolation;
    }
    public function enforceTimeLimit() : bool {
        return $this->enforceTimeLimit;
    }
    public function defaultTimeLimit() : int {
        return $this->defaultTimeLimit;
    }
    public function timeoutForSmallTests() : int {
        return $this->timeoutForSmallTests;
    }
    public function timeoutForMediumTests() : int {
        return $this->timeoutForMediumTests;
    }
    public function timeoutForLargeTests() : int {
        return $this->timeoutForLargeTests;
    }
    public function reportUselessTests() : bool {
        return $this->reportUselessTests;
    }
    public function strictCoverage() : bool {
        return $this->strictCoverage;
    }
    public function disallowTestOutput() : bool {
        return $this->disallowTestOutput;
    }
    public function displayDetailsOnIncompleteTests() : bool {
        return $this->displayDetailsOnIncompleteTests;
    }
    public function displayDetailsOnSkippedTests() : bool {
        return $this->displayDetailsOnSkippedTests;
    }
    public function displayDetailsOnTestsThatTriggerDeprecations() : bool {
        return $this->displayDetailsOnTestsThatTriggerDeprecations;
    }
    public function displayDetailsOnPhpunitDeprecations() : bool {
        return $this->displayDetailsOnPhpunitDeprecations;
    }
    public function displayDetailsOnTestsThatTriggerErrors() : bool {
        return $this->displayDetailsOnTestsThatTriggerErrors;
    }
    public function displayDetailsOnTestsThatTriggerNotices() : bool {
        return $this->displayDetailsOnTestsThatTriggerNotices;
    }
    public function displayDetailsOnTestsThatTriggerWarnings() : bool {
        return $this->displayDetailsOnTestsThatTriggerWarnings;
    }
    public function reverseDefectList() : bool {
        return $this->reverseDefectList;
    }
    public function requireCoverageMetadata() : bool {
        return $this->requireCoverageMetadata;
    }
    
    /**
     * @deprecated
     */
    public function registerMockObjectsFromTestArgumentsRecursively() : bool {
        return $this->registerMockObjectsFromTestArgumentsRecursively;
    }
    public function noProgress() : bool {
        return $this->noProgress;
    }
    public function noResults() : bool {
        return $this->noResults;
    }
    public function noOutput() : bool {
        return $this->noOutput;
    }
    public function executionOrder() : int {
        return $this->executionOrder;
    }
    public function executionOrderDefects() : int {
        return $this->executionOrderDefects;
    }
    public function resolveDependencies() : bool {
        return $this->resolveDependencies;
    }
    
    /**
     * @psalm-assert-if-true !null $this->logfileTeamcity
     */
    public function hasLogfileTeamcity() : bool {
        return $this->logfileTeamcity !== null;
    }
    
    /**
     * @throws LoggingNotConfiguredException
     */
    public function logfileTeamcity() : string {
        if (!$this->hasLogfileTeamcity()) {
            throw new LoggingNotConfiguredException();
        }
        return $this->logfileTeamcity;
    }
    
    /**
     * @psalm-assert-if-true !null $this->logfileJunit
     */
    public function hasLogfileJunit() : bool {
        return $this->logfileJunit !== null;
    }
    
    /**
     * @throws LoggingNotConfiguredException
     */
    public function logfileJunit() : string {
        if (!$this->hasLogfileJunit()) {
            throw new LoggingNotConfiguredException();
        }
        return $this->logfileJunit;
    }
    
    /**
     * @psalm-assert-if-true !null $this->logfileTestdoxHtml
     */
    public function hasLogfileTestdoxHtml() : bool {
        return $this->logfileTestdoxHtml !== null;
    }
    
    /**
     * @throws LoggingNotConfiguredException
     */
    public function logfileTestdoxHtml() : string {
        if (!$this->hasLogfileTestdoxHtml()) {
            throw new LoggingNotConfiguredException();
        }
        return $this->logfileTestdoxHtml;
    }
    
    /**
     * @psalm-assert-if-true !null $this->logfileTestdoxText
     */
    public function hasLogfileTestdoxText() : bool {
        return $this->logfileTestdoxText !== null;
    }
    
    /**
     * @throws LoggingNotConfiguredException
     */
    public function logfileTestdoxText() : string {
        if (!$this->hasLogfileTestdoxText()) {
            throw new LoggingNotConfiguredException();
        }
        return $this->logfileTestdoxText;
    }
    
    /**
     * @psalm-assert-if-true !null $this->logEventsText
     */
    public function hasLogEventsText() : bool {
        return $this->logEventsText !== null;
    }
    
    /**
     * @throws LoggingNotConfiguredException
     */
    public function logEventsText() : string {
        if (!$this->hasLogEventsText()) {
            throw new LoggingNotConfiguredException();
        }
        return $this->logEventsText;
    }
    
    /**
     * @psalm-assert-if-true !null $this->logEventsVerboseText
     */
    public function hasLogEventsVerboseText() : bool {
        return $this->logEventsVerboseText !== null;
    }
    
    /**
     * @throws LoggingNotConfiguredException
     */
    public function logEventsVerboseText() : string {
        if (!$this->hasLogEventsVerboseText()) {
            throw new LoggingNotConfiguredException();
        }
        return $this->logEventsVerboseText;
    }
    public function outputIsTeamCity() : bool {
        return $this->teamCityOutput;
    }
    public function outputIsTestDox() : bool {
        return $this->testDoxOutput;
    }
    
    /**
     * @psalm-assert-if-true !empty $this->testsCovering
     */
    public function hasTestsCovering() : bool {
        return !empty($this->testsCovering);
    }
    
    /**
     * @psalm-return list<string>
     *
     * @throws FilterNotConfiguredException
     */
    public function testsCovering() : array {
        if (!$this->hasTestsCovering()) {
            throw new FilterNotConfiguredException();
        }
        return $this->testsCovering;
    }
    
    /**
     * @psalm-assert-if-true !empty $this->testsUsing
     */
    public function hasTestsUsing() : bool {
        return !empty($this->testsUsing);
    }
    
    /**
     * @psalm-return list<string>
     *
     * @throws FilterNotConfiguredException
     */
    public function testsUsing() : array {
        if (!$this->hasTestsUsing()) {
            throw new FilterNotConfiguredException();
        }
        return $this->testsUsing;
    }
    
    /**
     * @psalm-assert-if-true !null $this->filter
     */
    public function hasFilter() : bool {
        return $this->filter !== null;
    }
    
    /**
     * @throws FilterNotConfiguredException
     */
    public function filter() : string {
        if (!$this->hasFilter()) {
            throw new FilterNotConfiguredException();
        }
        return $this->filter;
    }
    
    /**
     * @psalm-assert-if-true !empty $this->groups
     */
    public function hasGroups() : bool {
        return !empty($this->groups);
    }
    
    /**
     * @throws FilterNotConfiguredException
     */
    public function groups() : array {
        if (!$this->hasGroups()) {
            throw new FilterNotConfiguredException();
        }
        return $this->groups;
    }
    
    /**
     * @psalm-assert-if-true !empty $this->excludeGroups
     */
    public function hasExcludeGroups() : bool {
        return !empty($this->excludeGroups);
    }
    
    /**
     * @throws FilterNotConfiguredException
     */
    public function excludeGroups() : array {
        if (!$this->hasExcludeGroups()) {
            throw new FilterNotConfiguredException();
        }
        return $this->excludeGroups;
    }
    public function randomOrderSeed() : int {
        return $this->randomOrderSeed;
    }
    public function includeUncoveredFiles() : bool {
        return $this->includeUncoveredFiles;
    }
    public function testSuite() : TestSuiteCollection {
        return $this->testSuite;
    }
    public function includeTestSuite() : string {
        return $this->includeTestSuite;
    }
    public function excludeTestSuite() : string {
        return $this->excludeTestSuite;
    }
    
    /**
     * @psalm-assert-if-true !null $this->defaultTestSuite
     */
    public function hasDefaultTestSuite() : bool {
        return $this->defaultTestSuite !== null;
    }
    
    /**
     * @throws NoDefaultTestSuiteException
     */
    public function defaultTestSuite() : string {
        if (!$this->hasDefaultTestSuite()) {
            throw new NoDefaultTestSuiteException();
        }
        return $this->defaultTestSuite;
    }
    
    /**
     * @psalm-return non-empty-list<non-empty-string>
     */
    public function testSuffixes() : array {
        return $this->testSuffixes;
    }
    public function php() : Php {
        return $this->php;
    }
    public function controlGarbageCollector() : bool {
        return $this->controlGarbageCollector;
    }
    public function numberOfTestsBeforeGarbageCollection() : int {
        return $this->numberOfTestsBeforeGarbageCollection;
    }
    
    /**
     * @psalm-assert-if-true !null $this->generateBaseline
     */
    public function hasGenerateBaseline() : bool {
        return $this->generateBaseline !== null;
    }
    
    /**
     * @throws NoBaselineException
     */
    public function generateBaseline() : string {
        if (!$this->hasGenerateBaseline()) {
            throw new NoBaselineException();
        }
        return $this->generateBaseline;
    }
    public function debug() : bool {
        return $this->debug;
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary
Configuration::$backupGlobals private property
Configuration::$backupStaticProperties private property
Configuration::$beStrictAboutChangesToGlobalState private property
Configuration::$bootstrap private property
Configuration::$cacheDirectory private property
Configuration::$cacheResult private property
Configuration::$cliArguments private property @psalm-var list&lt;non-empty-string&gt;
Configuration::$colors private property
Configuration::$columns private property
Configuration::$configurationFile private property
Configuration::$controlGarbageCollector private property
Configuration::$coverageCacheDirectory private property
Configuration::$coverageClover private property
Configuration::$coverageCobertura private property
Configuration::$coverageCrap4j private property
Configuration::$coverageCrap4jThreshold private property
Configuration::$coverageHtml private property
Configuration::$coverageHtmlColorDanger private property
Configuration::$coverageHtmlColorSuccessHigh private property
Configuration::$coverageHtmlColorSuccessLow private property
Configuration::$coverageHtmlColorSuccessMedium private property
Configuration::$coverageHtmlColorWarning private property
Configuration::$coverageHtmlCustomCssFile private property
Configuration::$coverageHtmlHighLowerBound private property
Configuration::$coverageHtmlLowUpperBound private property
Configuration::$coveragePhp private property
Configuration::$coverageText private property
Configuration::$coverageTextShowOnlySummary private property
Configuration::$coverageTextShowUncoveredFiles private property
Configuration::$coverageXml private property
Configuration::$debug private property
Configuration::$defaultTestSuite private property
Configuration::$defaultTimeLimit private property
Configuration::$disableCodeCoverageIgnore private property
Configuration::$disallowTestOutput private property
Configuration::$displayDetailsOnIncompleteTests private property
Configuration::$displayDetailsOnPhpunitDeprecations private property
Configuration::$displayDetailsOnSkippedTests private property
Configuration::$displayDetailsOnTestsThatTriggerDeprecations private property
Configuration::$displayDetailsOnTestsThatTriggerErrors private property
Configuration::$displayDetailsOnTestsThatTriggerNotices private property
Configuration::$displayDetailsOnTestsThatTriggerWarnings private property
Configuration::$enforceTimeLimit private property
Configuration::$excludeGroups private property
Configuration::$excludeTestSuite private property
Configuration::$executionOrder private property
Configuration::$executionOrderDefects private property
Configuration::$extensionBootstrappers private property @psalm-var list&lt;array{className: class-string, parameters: array&lt;string, string&gt;}&gt;
Configuration::$failOnDeprecation private property
Configuration::$failOnEmptyTestSuite private property
Configuration::$failOnIncomplete private property
Configuration::$failOnNotice private property
Configuration::$failOnPhpunitDeprecation private property
Configuration::$failOnRisky private property
Configuration::$failOnSkipped private property
Configuration::$failOnWarning private property
Configuration::$filter private property
Configuration::$generateBaseline private property
Configuration::$groups private property
Configuration::$ignoreDeprecatedCodeUnitsFromCodeCoverage private property
Configuration::$includeTestSuite private property
Configuration::$includeUncoveredFiles private property
Configuration::$logEventsText private property
Configuration::$logEventsVerboseText private property
Configuration::$logfileJunit private property
Configuration::$logfileTeamcity private property
Configuration::$logfileTestdoxHtml private property
Configuration::$logfileTestdoxText private property
Configuration::$noExtensions private property
Configuration::$noOutput private property
Configuration::$noProgress private property
Configuration::$noResults private property
Configuration::$numberOfTestsBeforeGarbageCollection private property
Configuration::$outputToStandardErrorStream private property
Configuration::$pathCoverage private property
Configuration::$pharExtensionDirectory private property @psalm-var ?non-empty-string
Configuration::$php private property
Configuration::$processIsolation private property
Configuration::$randomOrderSeed private property
Configuration::$registerMockObjectsFromTestArgumentsRecursively private property
Configuration::$reportUselessTests private property
Configuration::$requireCoverageMetadata private property
Configuration::$resolveDependencies private property
Configuration::$reverseDefectList private property
Configuration::$source private property
Configuration::$stopOnDefect private property
Configuration::$stopOnDeprecation private property
Configuration::$stopOnError private property
Configuration::$stopOnFailure private property
Configuration::$stopOnIncomplete private property
Configuration::$stopOnNotice private property
Configuration::$stopOnRisky private property
Configuration::$stopOnSkipped private property
Configuration::$stopOnWarning private property
Configuration::$strictCoverage private property
Configuration::$teamCityOutput private property
Configuration::$testDoxOutput private property
Configuration::$testResultCacheFile private property
Configuration::$testsCovering private property
Configuration::$testSuffixes private property @psalm-var non-empty-list&lt;non-empty-string&gt;
Configuration::$testSuite private property
Configuration::$testsUsing private property
Configuration::$timeoutForLargeTests private property
Configuration::$timeoutForMediumTests private property
Configuration::$timeoutForSmallTests private property
Configuration::backupGlobals public function
Configuration::backupStaticProperties public function
Configuration::beStrictAboutChangesToGlobalState public function
Configuration::bootstrap public function
Configuration::cacheDirectory public function
Configuration::cacheResult public function
Configuration::cliArgument Deprecated public function
Configuration::cliArguments public function @psalm-return list&lt;non-empty-string&gt;
Configuration::colors public function
Configuration::COLOR_ALWAYS public constant
Configuration::COLOR_AUTO public constant
Configuration::COLOR_DEFAULT public constant
Configuration::COLOR_NEVER public constant
Configuration::columns public function
Configuration::configurationFile public function
Configuration::controlGarbageCollector public function
Configuration::coverageCacheDirectory public function
Configuration::coverageClover public function
Configuration::coverageCobertura public function
Configuration::coverageCrap4j public function
Configuration::coverageCrap4jThreshold public function
Configuration::coverageExcludeDirectories Deprecated public function
Configuration::coverageExcludeFiles Deprecated public function
Configuration::coverageHtml public function
Configuration::coverageHtmlColorDanger public function
Configuration::coverageHtmlColorSuccessHigh public function
Configuration::coverageHtmlColorSuccessLow public function
Configuration::coverageHtmlColorSuccessMedium public function
Configuration::coverageHtmlColorWarning public function
Configuration::coverageHtmlCustomCssFile public function
Configuration::coverageHtmlHighLowerBound public function
Configuration::coverageHtmlLowUpperBound public function
Configuration::coverageIncludeDirectories Deprecated public function
Configuration::coverageIncludeFiles Deprecated public function
Configuration::coveragePhp public function
Configuration::coverageText public function
Configuration::coverageTextShowOnlySummary public function
Configuration::coverageTextShowUncoveredFiles public function
Configuration::coverageXml public function
Configuration::debug public function
Configuration::defaultTestSuite public function
Configuration::defaultTimeLimit public function
Configuration::disableCodeCoverageIgnore public function
Configuration::disallowTestOutput public function
Configuration::displayDetailsOnIncompleteTests public function
Configuration::displayDetailsOnPhpunitDeprecations public function
Configuration::displayDetailsOnSkippedTests public function
Configuration::displayDetailsOnTestsThatTriggerDeprecations public function
Configuration::displayDetailsOnTestsThatTriggerErrors public function
Configuration::displayDetailsOnTestsThatTriggerNotices public function
Configuration::displayDetailsOnTestsThatTriggerWarnings public function
Configuration::enforceTimeLimit public function
Configuration::excludeGroups public function
Configuration::excludeTestSuite public function
Configuration::executionOrder public function
Configuration::executionOrderDefects public function
Configuration::extensionBootstrappers public function @psalm-return list&lt;array{className: class-string, parameters: array&lt;string, string&gt;}&gt;
Configuration::failOnDeprecation public function
Configuration::failOnEmptyTestSuite public function
Configuration::failOnIncomplete public function
Configuration::failOnNotice public function
Configuration::failOnPhpunitDeprecation public function
Configuration::failOnRisky public function
Configuration::failOnSkipped public function
Configuration::failOnWarning public function
Configuration::filter public function
Configuration::generateBaseline public function
Configuration::groups public function
Configuration::hasBootstrap public function @psalm-assert-if-true !null $this-&gt;bootstrap
Configuration::hasCacheDirectory public function @psalm-assert-if-true !null $this-&gt;cacheDirectory
Configuration::hasCliArgument Deprecated public function @psalm-assert-if-true !empty $this-&gt;cliArguments
Configuration::hasCliArguments public function @psalm-assert-if-true !empty $this-&gt;cliArguments
Configuration::hasConfigurationFile public function @psalm-assert-if-true !null $this-&gt;configurationFile
Configuration::hasCoverageCacheDirectory public function @psalm-assert-if-true !null $this-&gt;coverageCacheDirectory
Configuration::hasCoverageClover public function @psalm-assert-if-true !null $this-&gt;coverageClover
Configuration::hasCoverageCobertura public function @psalm-assert-if-true !null $this-&gt;coverageCobertura
Configuration::hasCoverageCrap4j public function @psalm-assert-if-true !null $this-&gt;coverageCrap4j
Configuration::hasCoverageHtml public function @psalm-assert-if-true !null $this-&gt;coverageHtml
Configuration::hasCoverageHtmlCustomCssFile public function @psalm-assert-if-true !null $this-&gt;coverageHtmlCustomCssFile
Configuration::hasCoveragePhp public function @psalm-assert-if-true !null $this-&gt;coveragePhp
Configuration::hasCoverageReport public function
Configuration::hasCoverageText public function @psalm-assert-if-true !null $this-&gt;coverageText
Configuration::hasCoverageXml public function @psalm-assert-if-true !null $this-&gt;coverageXml
Configuration::hasDefaultTestSuite public function @psalm-assert-if-true !null $this-&gt;defaultTestSuite
Configuration::hasExcludeGroups public function @psalm-assert-if-true !empty $this-&gt;excludeGroups
Configuration::hasFilter public function @psalm-assert-if-true !null $this-&gt;filter
Configuration::hasGenerateBaseline public function @psalm-assert-if-true !null $this-&gt;generateBaseline
Configuration::hasGroups public function @psalm-assert-if-true !empty $this-&gt;groups
Configuration::hasLogEventsText public function @psalm-assert-if-true !null $this-&gt;logEventsText
Configuration::hasLogEventsVerboseText public function @psalm-assert-if-true !null $this-&gt;logEventsVerboseText
Configuration::hasLogfileJunit public function @psalm-assert-if-true !null $this-&gt;logfileJunit
Configuration::hasLogfileTeamcity public function @psalm-assert-if-true !null $this-&gt;logfileTeamcity
Configuration::hasLogfileTestdoxHtml public function @psalm-assert-if-true !null $this-&gt;logfileTestdoxHtml
Configuration::hasLogfileTestdoxText public function @psalm-assert-if-true !null $this-&gt;logfileTestdoxText
Configuration::hasNonEmptyListOfFilesToBeIncludedInCodeCoverageReport Deprecated public function
Configuration::hasPharExtensionDirectory public function @psalm-assert-if-true !null $this-&gt;pharExtensionDirectory
Configuration::hasTestsCovering public function @psalm-assert-if-true !empty $this-&gt;testsCovering
Configuration::hasTestsUsing public function @psalm-assert-if-true !empty $this-&gt;testsUsing
Configuration::ignoreDeprecatedCodeUnitsFromCodeCoverage public function
Configuration::includeTestSuite public function
Configuration::includeUncoveredFiles public function
Configuration::loadPharExtensions Deprecated public function
Configuration::logEventsText public function
Configuration::logEventsVerboseText public function
Configuration::logfileJunit public function
Configuration::logfileTeamcity public function
Configuration::logfileTestdoxHtml public function
Configuration::logfileTestdoxText public function
Configuration::noExtensions public function
Configuration::noOutput public function
Configuration::noProgress public function
Configuration::noResults public function
Configuration::numberOfTestsBeforeGarbageCollection public function
Configuration::outputIsTeamCity public function
Configuration::outputIsTestDox public function
Configuration::outputToStandardErrorStream public function
Configuration::pathCoverage public function
Configuration::pharExtensionDirectory public function @psalm-return non-empty-string
Configuration::php public function
Configuration::processIsolation public function
Configuration::randomOrderSeed public function
Configuration::registerMockObjectsFromTestArgumentsRecursively public function
Configuration::reportUselessTests public function
Configuration::requireCoverageMetadata public function
Configuration::resolveDependencies public function
Configuration::restrictDeprecations Deprecated public function
Configuration::restrictNotices Deprecated public function
Configuration::restrictWarnings Deprecated public function
Configuration::reverseDefectList public function
Configuration::source public function
Configuration::stopOnDefect public function
Configuration::stopOnDeprecation public function
Configuration::stopOnError public function
Configuration::stopOnFailure public function
Configuration::stopOnIncomplete public function
Configuration::stopOnNotice public function
Configuration::stopOnRisky public function
Configuration::stopOnSkipped public function
Configuration::stopOnWarning public function
Configuration::strictCoverage public function
Configuration::testResultCacheFile public function
Configuration::testsCovering public function @psalm-return list&lt;string&gt;
Configuration::testSuffixes public function @psalm-return non-empty-list&lt;non-empty-string&gt;
Configuration::testSuite public function
Configuration::testsUsing public function @psalm-return list&lt;string&gt;
Configuration::timeoutForLargeTests public function
Configuration::timeoutForMediumTests public function
Configuration::timeoutForSmallTests public function
Configuration::__construct public function @psalm-param list&lt;non-empty-string&gt; $cliArguments
@psalm-param ?non-empty-string $pharExtensionDirectory
@psalm-param non-empty-list&lt;non-empty-string&gt; $testSuffixes
@psalm-param list&lt;array{className: class-string, parameters:…
RSS feed
Powered by Drupal