@@ -95,6 +95,8 @@ final class Configuration
9595 private bool $ requireCoverageMetadata ;
9696 private bool $ registerMockObjectsFromTestArgumentsRecursively ;
9797 private bool $ noProgress ;
98+ private bool $ noResults ;
99+ private bool $ noOutput ;
98100 private int $ executionOrder ;
99101 private int $ executionOrderDefects ;
100102 private bool $ resolveDependencies ;
@@ -108,7 +110,6 @@ final class Configuration
108110 private ?string $ logEventsVerboseText ;
109111 private ?array $ testsCovering ;
110112 private ?array $ testsUsing ;
111- private bool $ defaultOutput ;
112113 private bool $ teamCityOutput ;
113114 private bool $ testDoxOutput ;
114115 private int $ repeat ;
@@ -123,7 +124,7 @@ final class Configuration
123124 /**
124125 * @psalm-param list<array{className: class-string, parameters: array<string, string>}> $extensionBootstrappers
125126 */
126- public function __construct (?string $ configurationFile , ?string $ bootstrap , bool $ cacheResult , ?string $ cacheDirectory , ?string $ coverageCacheDirectory , 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 $ failOnEmptyTestSuite , bool $ failOnIncomplete , bool $ failOnRisky , bool $ failOnSkipped , bool $ failOnWarning , bool $ outputToStandardErrorStream , int |string $ columns , bool $ tooFewColumnsRequested , bool $ loadPharExtensions , ?string $ pharExtensionDirectory , array $ extensionBootstrappers , bool $ backupGlobals , bool $ backupStaticProperties , bool $ beStrictAboutChangesToGlobalState , bool $ colors , bool $ processIsolation , bool $ stopOnDefect , bool $ stopOnError , bool $ stopOnFailure , bool $ stopOnWarning , bool $ stopOnIncomplete , bool $ stopOnRisky , bool $ stopOnSkipped , bool $ enforceTimeLimit , int $ defaultTimeLimit , int $ timeoutForSmallTests , int $ timeoutForMediumTests , int $ timeoutForLargeTests , bool $ reportUselessTests , bool $ strictCoverage , bool $ disallowTestOutput , bool $ displayDetailsOnIncompleteTests , bool $ displayDetailsOnSkippedTests , bool $ displayDetailsOnTestsThatTriggerDeprecations , bool $ displayDetailsOnTestsThatTriggerErrors , bool $ displayDetailsOnTestsThatTriggerNotices , bool $ displayDetailsOnTestsThatTriggerWarnings , bool $ reverseDefectList , bool $ requireCoverageMetadata , bool $ registerMockObjectsFromTestArgumentsRecursively , bool $ noProgress , int $ executionOrder , int $ executionOrderDefects , bool $ resolveDependencies , ?string $ logfileText , ?string $ logfileTeamcity , ?string $ logfileJunit , ?string $ logfileTestdoxHtml , ?string $ logfileTestdoxText , ?string $ logfileTestdoxXml , ?string $ logEventsText , ?string $ logEventsVerboseText , bool $ defaultOutput , bool $ teamCityOutput , bool $ testDoxOutput , int $ repeat , ?array $ testsCovering , ?array $ testsUsing , ?string $ filter , ?array $ groups , ?array $ excludeGroups , ?string $ includePath , int $ randomOrderSeed , bool $ includeUncoveredFiles , ?string $ xmlValidationErrors )
127+ public function __construct (?string $ configurationFile , ?string $ bootstrap , bool $ cacheResult , ?string $ cacheDirectory , ?string $ coverageCacheDirectory , 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 $ failOnEmptyTestSuite , bool $ failOnIncomplete , bool $ failOnRisky , bool $ failOnSkipped , bool $ failOnWarning , bool $ outputToStandardErrorStream , int |string $ columns , bool $ tooFewColumnsRequested , bool $ loadPharExtensions , ?string $ pharExtensionDirectory , array $ extensionBootstrappers , bool $ backupGlobals , bool $ backupStaticProperties , bool $ beStrictAboutChangesToGlobalState , bool $ colors , bool $ processIsolation , bool $ stopOnDefect , bool $ stopOnError , bool $ stopOnFailure , bool $ stopOnWarning , bool $ stopOnIncomplete , bool $ stopOnRisky , bool $ stopOnSkipped , bool $ enforceTimeLimit , int $ defaultTimeLimit , int $ timeoutForSmallTests , int $ timeoutForMediumTests , int $ timeoutForLargeTests , bool $ reportUselessTests , bool $ strictCoverage , bool $ disallowTestOutput , bool $ displayDetailsOnIncompleteTests , bool $ displayDetailsOnSkippedTests , bool $ displayDetailsOnTestsThatTriggerDeprecations , 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 $ logfileText , ?string $ logfileTeamcity , ?string $ logfileJunit , ?string $ logfileTestdoxHtml , ?string $ logfileTestdoxText , ?string $ logfileTestdoxXml , ?string $ logEventsText , ?string $ logEventsVerboseText , bool $ teamCityOutput , bool $ testDoxOutput , int $ repeat , ?array $ testsCovering , ?array $ testsUsing , ?string $ filter , ?array $ groups , ?array $ excludeGroups , ?string $ includePath , int $ randomOrderSeed , bool $ includeUncoveredFiles , ?string $ xmlValidationErrors )
127128 {
128129 $ this ->configurationFile = $ configurationFile ;
129130 $ this ->bootstrap = $ bootstrap ;
@@ -193,6 +194,8 @@ public function __construct(?string $configurationFile, ?string $bootstrap, bool
193194 $ this ->requireCoverageMetadata = $ requireCoverageMetadata ;
194195 $ this ->registerMockObjectsFromTestArgumentsRecursively = $ registerMockObjectsFromTestArgumentsRecursively ;
195196 $ this ->noProgress = $ noProgress ;
197+ $ this ->noResults = $ noResults ;
198+ $ this ->noOutput = $ noOutput ;
196199 $ this ->executionOrder = $ executionOrder ;
197200 $ this ->executionOrderDefects = $ executionOrderDefects ;
198201 $ this ->resolveDependencies = $ resolveDependencies ;
@@ -204,7 +207,6 @@ public function __construct(?string $configurationFile, ?string $bootstrap, bool
204207 $ this ->logfileTestdoxXml = $ logfileTestdoxXml ;
205208 $ this ->logEventsText = $ logEventsText ;
206209 $ this ->logEventsVerboseText = $ logEventsVerboseText ;
207- $ this ->defaultOutput = $ defaultOutput ;
208210 $ this ->teamCityOutput = $ teamCityOutput ;
209211 $ this ->testDoxOutput = $ testDoxOutput ;
210212 $ this ->repeat = $ repeat ;
@@ -768,6 +770,16 @@ public function noProgress(): bool
768770 return $ this ->noProgress ;
769771 }
770772
773+ public function noResults (): bool
774+ {
775+ return $ this ->noResults ;
776+ }
777+
778+ public function noOutput (): bool
779+ {
780+ return $ this ->noOutput ;
781+ }
782+
771783 public function executionOrder (): int
772784 {
773785 return $ this ->executionOrder ;
@@ -943,11 +955,6 @@ public function logEventsVerboseText(): string
943955 return $ this ->logEventsVerboseText ;
944956 }
945957
946- public function outputIsDefault (): bool
947- {
948- return $ this ->defaultOutput ;
949- }
950-
951958 public function outputIsTeamCity (): bool
952959 {
953960 return $ this ->teamCityOutput ;
0 commit comments