0

重複の可能性:
sahiとsymfony2

symfony2でbehat、mink、sahiをテストしたいと思います。

私のファイルconfig_test.ymlには

mink:
    base_url:  http://localhost/Symfony_Standard_2.0.15_2/symfony/web/app_test.php    
    default_session: symfony
    sahi: ~

私が使用するときの私のtest.featureで

Scenario: Open page with products list and check it
Given I am on "/hello"
Then the response should contain "hello"

結果は良好です:

1 scenario (1 passed)
2 steps (2 passed)
0m5.112s

しかし、私が追加すると、@mink:sahi私は得る

@mink:sahi
Scenario: Open page with products list and check it #             
src\Acme\DemoBundle\Features\test.feature:6
Given I am on "/hello" # Acme\DemoBundle\Features\Context\FeatureContext::visit()
Operation timed out after 5000 milliseconds with 0 bytes received
Then the response should contain "hello" # 
Acme\DemoBundle\Features\Context\FeatureContext::assertResponseContains()

1 scenario (1 failed)
2 steps (1 skipped, 1 failed)
0m5.112s

何か考えはありますか?

4

1 に答える 1

0

私は問題を解決しました。実際、テストを開始する前に、ドライバーsahiを実行する必要があります。

于 2012-06-28T08:18:55.237 に答える