这就是我所做的:
在根目录中添加了c3.php
app_code
├── c3.php
└── index.php
c3.php
中包含的index.php
<?php
include 'c3.php';
//some other includes
?>
已在codeception.yml
coverage:
enabled: true
remote: false
c3_url: http://mylocalenv.mine
acceptance.yml
中的Webdriver配置
config:
WebDriver:
url: http://mylocalenv.mine
xdebug远程为on
xdebug.remote_enable => On => On
xdebug.remote_handler => dbgp => dbgp
xdebug.remote_host => localhost => localhost
xdebug.remote_log => /logs/xdebug.log => /logs/xdebug.log
xdebug.remote_mode => req => req
xdebug.remote_port => 9000 => 9000
我为chmod
做过output
我有什么想念吗?