我正在尝试使用tutorial on the website学习Behat。

第一步完成,没有错误出现。

但是,当我更改ls_project/features/bootstrap/FeatureContext.php时(如教程第二步所示),出现以下错误:'Behat\Behat\Context\BehatContext' not found

应用了更改的教程代码:

# features/bootstrap/FeatureContext.php
<?php

use Behat\Behat\Context\BehatContext,
    Behat\Behat\Exception\PendingException;
use Behat\Gherkin\Node\PyStringNode,
    Behat\Gherkin\Node\TableNode;

class FeatureContext extends BehatContext
{
    /**
     * @Given /^I am in a directory "([^"]*)"$/
     */
    public function iAmInADirectory($dir)
    {
        if (!file_exists($dir)) {
            mkdir($dir);
        }
        chdir($dir);
    }
}

完整的错误日志:
11:51:33 / ME : /var/www/test-driven/behat/ls_project
$ behat
# features/bootstrap/FeatureContext.php
PHP Fatal error:  Class 'Behat\Behat\Context\BehatContext' not found in /var/www/test-driven/behat/ls_project/features/bootstrap/FeatureContext.php on line 10
PHP Stack trace:
PHP   1. {main}() /opt/Behat/bin/behat:0
PHP   2. Symfony\Component\Console\Application->run() /opt/Behat/bin/behat:31
PHP   3. Behat\Testwork\Cli\Application->doRun() /opt/Behat/vendor/symfony/console/Symfony/Component/Console/Application.php:121
PHP   4. Symfony\Component\Console\Application->doRun() /opt/Behat/src/Behat/Testwork/Cli/Application.php:90
PHP   5. Symfony\Component\Console\Application->doRunCommand() /opt/Behat/vendor/symfony/console/Symfony/Component/Console/Application.php:191
PHP   6. Symfony\Component\Console\Command\Command->run() /opt/Behat/vendor/symfony/console/Symfony/Component/Console/Application.php:892
PHP   7. Behat\Testwork\Cli\Command->execute() /opt/Behat/vendor/symfony/console/Symfony/Component/Console/Command/Command.php:241
PHP   8. Behat\Testwork\Tester\Cli\ExerciseController->execute() /opt/Behat/src/Behat/Testwork/Cli/Command.php:63
PHP   9. Behat\Testwork\Tester\Cli\ExerciseController->testSpecifications() /opt/Behat/src/Behat/Testwork/Tester/Cli/ExerciseController.php:106
PHP  10. Behat\Testwork\EventDispatcher\Tester\EventDispatchingExercise->test() /opt/Behat/src/Behat/Testwork/Tester/Cli/ExerciseController.php:137
PHP  11. Behat\Testwork\Tester\Runtime\RuntimeExercise->test() /opt/Behat/src/Behat/Testwork/EventDispatcher/Tester/EventDispatchingExercise.php:65
PHP  12. Behat\Testwork\Environment\EnvironmentManager->buildEnvironment() /opt/Behat/src/Behat/Testwork/Tester/Runtime/RuntimeExercise.php:67
PHP  13. Behat\Behat\Context\Environment\Handler\ContextEnvironmentHandler->buildEnvironment() /opt/Behat/src/Behat/Testwork/Environment/EnvironmentManager.php:69
PHP  14. Behat\Behat\Context\Environment\UninitializedContextEnvironment->registerContextClass() /opt/Behat/src/Behat/Behat/Context/Environment/Handler/ContextEnvironmentHandler.php:75

谁能帮我解决这个问题?

最佳答案

看来您已经安装了Behat v3,但是您正在关注Behat 2文档。

Behat 3

Behat 3没有Behat\Behat\Context\BehatContext类。它有一个Behat\Behat\Context\Context接口(interface):

use Behat\Behat\Context\Context;

class FeatureContext implements Context
{
    // ...
}

composer.json中:
{
    "require-dev": {
        "behat/behat": "~3.1"
    },
    "config": {
        "bin-dir": "bin/"
    }
}

Behat 2

Behat 2使用Behat\Behat\Context\BehatContext基类:

use Behat\Behat\Context\BehatContext;

class FeatureContext extends BehatContext
{
    // ...
}

composer.json中:
{
    "require-dev": {
        "behat/behat": "~2.5"
    },
    "config": {
        "bin-dir": "bin/"
    }
}

关于php - 使用Behat在PHP中找不到 'Behat\Behat\Context\BehatContext'类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22403250/

10-12 12:40