-
Notifications
You must be signed in to change notification settings - Fork 280
/
Copy pathphpunit.xml
30 lines (25 loc) · 1011 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<phpunit bootstrap="./bootstrap.php">
<testsuites>
<!--- 1.测试运行环境和开发框架是否正常-->
<testsuite name="Require">
<file>./require/testEnv.php</file>
<file>./require/testFramework.php</file>
</testsuite>
<!--- 2.测试所有model是否正常-->
<testsuite name="Unit-Model">
<directory suffix=".php">unit/model</directory>
</testsuite>
<!--- 3.测试所有自定义函数是否正常-->
<testsuite name="User-function">
<directory suffix=".php">unit/user_function</directory>
</testsuite>
<!--- 4.测试所有逻辑类是否正常-->
<testsuite name="Unit-Logic">
<directory suffix=".php">unit/classes</directory>
</testsuite>
<!--- 5.测试所有的功能是否正常-->
<testsuite name="Feature">
<directory suffix=".php">feature/ctrl</directory>
</testsuite>
</testsuites>
</phpunit>