我有一个CakePHP项目,我还集成了Travis-CI来开始自动化测试。 现在我的测试看起来像这样:
<?php
App::uses('CustomControllerTest', 'Lib');
class AllocationsControllerTest extends CustomControllerTest
{...
我的travis.yml:
language: php
php:
- '5.3'
before_script:
- composer install
- php bootstrap.php
script:
phpunit --configuration phpunit.xml --coverage-text
bootsrap.php
目前为空。
当触发Travis时,它说没有找到Class'App'。
我需要添加什么来添加.travis.yml
或bootstrap.php
,以便它加载测试类中所需的所有依赖项?