找不到 PHPUnit 类测试用例

2022-08-30 22:09:26

我正在努力创建一个PHP库,并希望开始编写测试。我收到一个错误。Fatal error: Class 'PHPUnit\Framework\TestCase' not found

我的项目结构是:在我的主目录中,我有composer.json,一个包含我所有类的src/目录,一个带有unit/和incept/subdirectories的test/目录。我尝试运行的测试位于 unit/ 目录中。我正在使用命令行界面来运行测试,因此在运行时发生错误phpunit tests/unit/testMyClass.php

testMyClass.php看起来像这样:

<?php
require 'vendor/autoload.php';
use PHPUnit\Framework\TestCase;

class MyClassTest extends TestCase {
    public function testCreateMyClass() {
        // Tests are written here
    }
}
?>

我的 composer.json 是:

{
    "require-dev": {
        "phpunit/phpunit": "4.8.*"
    }
    "autoload": {
        "classmap": [
            "src/"
        }
    }
}

答案 1

我遇到了同样的问题,我通过从PHPUnit_Framework_TestCase类扩展我的测试类而不是使用命名空间PHPUnit\Framework\TestCase来解决它。重建项目结构后,它对我来说工作正常。

tests/unit/testMyClass.php

<?php
require './vendor/autoload.php';

class MyClassTest extends PHPUnit_Framework_TestCase {
     public function testCreateMyClass() {
        // Tests are written here
     }
}
?>

composer.json

{
   "name": "root/project",
   "authors": [
      {
           "name": "watzerm",
           "email": "some.email@provider.at"
      }
   ],
   "require": {
       "phpunit/phpunit": "5.4.*"
   },
   "autoload": {
       "classmap": [
           "src/"
       ]
   }
}

结果

$./vendor/bin/phpunit tests/unit/testMyClass.php

PHPUnit 4.8.27 by Sebastian Bergmann and contributors.

.

Time: 252 ms, Memory: 2.25MB

OK (1 test, 0 assertions)

请让我知道,如果这也对你有用!


答案 2

我用较新版本的PHPUnit解决了这个问题:

wget https://phar.phpunit.de/phpunit-6.0.phar
php phpunit-6.0.phar -c app/

输出:

PHPUnit 6.0.10 by Sebastian Bergmann and contributors.

..                                                                  2 / 2 (100%)

Time: 486 ms, Memory: 14.00MB

OK (2 tests, 3 assertions)

这是在Symfony 2.8 LTS和PHPunit 6.0 github repo上工作 - https://github.com/nikola-bodrozic/PHPUnit-Symfony28


推荐