当我运行特定的测试套件时,
phpunit --testsuite LibTests
我得到了预期的结果(通过了测试)。但是,当我运行“phpunit”时,我收到一个错误声明:
Fatal error: Call to a member function rss_feed_url() on a non-object in /Users/Shared/Jenkins/Home/jobs/Fanpilot_CT_3.0/workspace/tests/libs/VoltampMediaRSSFeedTest.php on line 20
其中 rss_feed_url() 是我在 setup() 中加载的类的方法。
这是我的 phpunit.xml 文件的片段
<testsuites>
<testsuite name="LibTests">
<directory suffix=".php">tests/libs</directory>
</testsuite>
</testsuites>
提前致谢!