我想将 phpspec2 与 CodeIgniter 2 集成。我已经使用 composer 成功安装了 phpspec,如phpspec website中所述。现在我想将它集成到我的 CodeIgniter 2 安装中。我找到了AniDear关于这个主题的一篇文章,并按照描述做了所有事情。但是,当我运行时bin/phpspec
出现错误:
PHP Warning: require(core/Common.php): failed to open stream: No such file or directory
in C:\xampp\htdocs\eljotengine\spec\ci_bootstrap.php on line 37
Warning: require(core/Common.php): failed to open stream: No such file or directory in C:\xampp\htdocs\eljotengine\spec\ci_bootstrap.php on line 37
等等。我的文件结构如下所示:
eljotengine
|-application
|-sytem
|- ... other CI
|-spec
| |- ci_bootstrap.php
我在 Windows 7 上使用 xampp。我的ci_bootstrap.php
文件看起来像上面提到的 AniDear 文章中的那个。
我试图更改ci_bootstrap.php
文件中的路径(这似乎是问题所在)但它并没有太大变化。
任何想法如何使这项工作?
问候:)