如何在一个项目中的不同文件夹中添加多个代码集?

时间:2015-07-02 12:39:11

标签: php unit-testing testing phpunit codeception

我有以下文件夹结构,我希望多个测试套件存在于不同的目录中。

- project
    - app
        - app-A
            - tests
                - (functional tests here)

        - app-B
            - tests
                - (functional tests here)

    - domains
        - domain-A
            - tests
                - (unit tests here)

        - domain-B
            - tests
                - (unit tests here)

1 个答案:

答案 0 :(得分:8)

<强> 1。在项目的根目录中创建codeception.yml文件

<强> 2。超过该文件中的以下内容:

include:

  - 

paths:

  log: log

settings:

  colors: true

第3。在子目录中生成一些测试套件:

codecept bootstrap /.../src/Domains/User --namespace user

codecept bootstrap /.../src/Application/Cms --namespace cms

<强> 4。通过在include下包含测试套件的路径来更新根目录的codeception.yml

include:

  - src/Domains/User

  - src/Application/Cms

<强> 5。生成一些测试

codecept generate:cept --config src/Domains/User unit testB

codecept generate:cept --config src/Applications/Cms functional testA

<强> 6。运行测试

codecept run