我有一个 phpunit.xml,它定义了要测试的测试以及引导文件的位置。我还想在我的 phpunit.xml 中定义可以在引导期间访问的参数。
这是我的 phpunit.xml:
<phpunit bootstrap="./bootstrap.php" colors="true" bootstrapArg="abcdefgh">
<testsuite name="TestSuite">
<file>./Test1.php</file>
<file>./Test2.php</file>
</testsuite></phpunit>
我想在我的 bootstrap.php 中访问“bootstrapArg”的值。这可能吗?
谢谢