我想测试我的库但是当我想要在测试类中使用它并使用phpunit filename.php
运行它时,我得到这样的错误:
Warning: require_once(>>>path to file<<<): failed to open stream: No such
file or directory in >>>file with test<<< on line 3
Fatal error: require_once(): Failed opening required >>>path to file<<<
(include_path='.;C:\xampp\php\PEAR') in >>>file with test<<< on line 3
正如您所见,我使用的是xampp。
当然,当我不使用phpunit但通过浏览器运行它时 - 所有导入都很有效(我总是使用$_SERVER['DOCUMENT_ROOT']
来获取绝对路径)。
*没有我需要像assertTrue(true)
这样的简单测试,没有任何问题。