Codeception \ Exception \ TestParseException无法解析测试

时间:2016-06-17 14:05:59

标签: php testing phpunit codeception

这是我的代码版本 Codeception 2.2.1版

codecept bootstrap

然后我生成测试,就像在快速入门指南http://codeception.com/quickstart

中一样
codecept generate:cept acceptance Welcome

我在localhost:9000上启动了我的服务器

codecept run -vvv 

...给我错误:

  

[Codeception \ Exception \ TestParseException]无法解析测试   ' d:\ OpenServer的\域\ codeception-演示\测试\验收\ WelcomeCept.php'   未检测到语法错误   d:\ OpenServer的\域\ codeception-演示\测试\验收\ WelcomeCept.php

我做错了什么?

enter image description here

1 个答案:

答案 0 :(得分:3)

之所以发生是因为 php -l D:\OpenServer\domains\codeception-demo\tests\acceptance\WelcomeCept.php返回非零状态代码。

可以在codeception.yml中禁用代码linting:

settings:
  lint: false