编程语言
首页 > 编程语言> > 如何在phpunit中运行目录结构测试?

如何在phpunit中运行目录结构测试?

作者:互联网

PHPUnit文档说,我可以将所有测试放到一个文件夹中,然后在该文件夹上运行phpunit,一次执行所有测试:

http://www.phpunit.de/manual/current/en/organizing-tests.html

但是,当我尝试使用Slim(https://github.com/codeguy/Slim)的分支副本时,它不起作用!我已经通过PEAR安装了PHPUnit,所以我认为这没有什么奇怪的.

这是输出:

mark@ubuntu:/project/submodules/Slim$phpunit tests     
PHP Fatal error:  Uncaught exception 'PHPUnit_Framework_Exception' with message 'Neither "tests.php" nor "tests.php" could be opened.' in /usr/share/php/PHPUnit/Util/Skeleton/Test.php:102
Stack trace:
#0 /usr/share/php/PHPUnit/TextUI/Command.php(157): PHPUnit_Util_Skeleton_Test->__construct('tests', '')
#1 /usr/share/php/PHPUnit/TextUI/Command.php(129): PHPUnit_TextUI_Command->run(Array, true)
#2 /usr/bin/phpunit(49): PHPUnit_TextUI_Command::main()
#3 {main}
  thrown in /usr/share/php/PHPUnit/Util/Skeleton/Test.php on line 102

有什么想法我做错了吗?

-编辑-

我正在使用PHPUnit 3.5.15.

这是目录Slim和测试的内容:

mark@ubuntu:/project/submodules/Slim$ls -l 
total 20
-rw-r--r-- 1 mark mark 4320 Aug 23 14:41 README.markdown
drwxr-xr-x 1 mark mark  408 Aug 24 02:39 Slim
-rw-r--r-- 1 mark mark 6993 Aug 23 14:41 index.php
-rw-r--r-- 1 mark mark 1398 Aug 23 14:41 logo.png
drwxr-xr-x 1 mark mark  476 Aug 23 14:41 tests
mark@ubuntu:/project/submodules/Slim$ls -l tests
total 104
-rw-r--r-- 1 mark mark    73 Aug 23 14:41 Foo.php
drwxr-xr-x 1 mark mark   204 Aug 23 14:41 Http
-rw-r--r-- 1 mark mark  4398 Aug 23 14:41 LogTest.php
-rw-r--r-- 1 mark mark  5088 Aug 23 14:41 LoggerTest.php
-rw-r--r-- 1 mark mark   734 Aug 23 14:41 README
-rw-r--r-- 1 mark mark 11115 Aug 23 14:41 RouteTest.php
-rw-r--r-- 1 mark mark 10327 Aug 23 14:41 RouterTest.php
drwxr-xr-x 1 mark mark   102 Aug 23 14:41 Session
-rw-r--r-- 1 mark mark 47703 Aug 23 14:41 SlimTest.php
-rw-r--r-- 1 mark mark  6447 Aug 23 14:41 ViewTest.php
drwxr-xr-x 1 mark mark   102 Aug 23 14:41 logs
drwxr-xr-x 1 mark mark   102 Aug 23 14:41 templates

我实际上只是将Slim分叉并克隆了它,没什么好看的!

解决方法:

通常,您在包含phpunit.xml和/或bootstrap.php的任何文件夹中发出phpunit命令.我的猜测是它们位于tests文件夹内.

.../Slim$cd tests
.../Slim/tests$phpunit

标签:slim,phpunit,php
来源: https://codeday.me/bug/20191102/1989962.html