Skip to content

Commit

Permalink
[TEST] Add Logging to Unit & Functional Test Change behaviour of Garb…
Browse files Browse the repository at this point in the history
…agecollector
  • Loading branch information
dhoffmann1979 committed Dec 10, 2024
1 parent 96e5866 commit e2b2128
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
9 changes: 8 additions & 1 deletion phpunit.functional.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@
beStrictAboutOutputDuringTests="true"
backupGlobals="true"
failOnRisky="true"
failOnWarning="true">
failOnWarning="true"
controlGarbageCollector="true">
<logging>
<junit outputFile=".project/artifacts/functionaltests/junit.xml"/>
<teamcity outputFile=".project/artifacts/functionaltests/teamcity.txt"/>
<testdoxHtml outputFile=".project/artifacts/functionaltests/testdox.html"/>
<testdoxText outputFile=".project/artifacts/functionaltests/testdox.txt"/>
</logging>
<testsuites>
<testsuite name="Functional">
<directory>Tests/Functional/</directory>
Expand Down
6 changes: 6 additions & 0 deletions phpunit.unit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
backupGlobals="true"
failOnRisky="true"
failOnWarning="true">
<logging>
<junit outputFile=".project/artifacts/unittests/junit.xml"/>
<teamcity outputFile=".project/artifacts/unittests/teamcity.txt"/>
<testdoxHtml outputFile=".project/artifacts/unittests/testdox.html"/>
<testdoxText outputFile=".project/artifacts/unittests/testdox.txt"/>
</logging>
<testsuites>
<testsuite name="Unit">
<directory>Tests/Unit/</directory>
Expand Down

0 comments on commit e2b2128

Please sign in to comment.