3

我的命令:

phpunit --log-junit /log/unitreport.xml --coverage-clover /log/result.xml --coverage-    html /log/coverage /sites/all/modules/delete_shopping_cart/

目录中要测试的文件:

delete_shopping_cart_Test.php another_Test.php

输出:

Cannot open file "/sites/all/modules/delete/shopping/cart/.php"

为什么 phpunit 将目录的 '_" 视为 '/' ?

我该如何更改它以使其到达正确的位置。

4

1 回答 1

0

自动加载器倾向于将下划线视为单独的目录:

A_B_C

变成

+- A
|  +- B
|  |  +- C
于 2013-10-22T21:47:23.107 回答