3

私は「Yii1.1とPHP5を使ったアジャイルWebアプリケーション開発」という本を使ってYiiを使い始めています。

TDD環境をセットアップして最初のテストを実行しているときに、次の警告が表示されます。

sl@cker:/var/www/demo/protected/tests$ phpunit functional/SiteTest.php
PHPUnit 3.6.12 by Sebastian Bergmann.

Configuration read from /var/www/demo/protected/tests/phpunit.xml

PHP Warning:  include(SiteTest: Firefox.php): failed to open stream: No such file or directory in /var/www/framework/YiiBase.php on line 423
PHP Warning:  include(): Failed opening 'SiteTest: Firefox.php' for inclusion (include_path='.:/var/www/demo/protected/components:/var/www/demo/protected/models:/usr/share/php:/
usr/share/pear') in /var/www/framework/YiiBase.php on line 423
...PHP Warning:  include(SiteTest: Firefox.php): failed to open stream: No such file or directory in /var/www/framework/YiiBase.php on line 423
PHP Warning:  include(): Failed opening 'SiteTest: Firefox.php' for inclusion (include_path='.:/var/www/demo/protected/components:/var/www/demo/protected/models:/usr/share/php:/
usr/share/pear') in /var/www/framework/YiiBase.php on line 423


Time: 44 seconds, Memory: 8.25Mb

OK (3 tests, 10 assertions)

誰かが私がこれを修正する方法を知っていますか、それとも私はそれらの警告を無視することができますか?この本は、次の名前のファイルについては何も述べていませんFirefox.php。ただし、テストはFirefoxで実行されました。

追加情報:

  • PHPバージョン5.3.10
  • プラットフォーム:Ubuntu 12.04
  • サーバー:Apache / 2.2.22
  • PHPUnitバージョン:3.6.12
  • セレンバージョン:2.25.0
  • Yiiバージョン:v1.1.12

(すべて最新の安定バージョンです)

4

2 に答える 2

6

わかりました。解決しました。他の誰かがこの問題にぶつかった場合に備えて、私は自分の質問に答えるだけです。

解決策は次のとおりです。

次のように変更phpunit.xmlします。

<phpunit bootstrap="bootstrap.php"
        colors="false"
        convertErrorsToExceptions="true"
        convertNoticesToExceptions="true"
        convertWarningsToExceptions="true"
        stopOnFailure="false">

    <selenium>
        <!-- <browser name="Firefox" browser="*firefox" /> -->
    </selenium>

</phpunit>

そして、次のように変更WebTestCase.phpします。

<?php

/**
 * Change the following URL based on your server configuration
 * Make sure the URL ends with a slash so that we can use relative URLs in test cases
 */
define('TEST_BASE_URL','http://localhost/demo/index-test.php/');

/**
 * The base class for functional test cases.
 * In this class, we set the base URL for the test application.
 * We also provide some common methods to be used by concrete test classes.
 */
class WebTestCase extends CWebTestCase
{
    /**
     * Sets up before each test method runs.
     * This mainly sets the base URL for the test application.
     */
    protected function setUp()
    {
        parent::setUp();
        $this->setBrowser('*firefox');
        $this->setBrowserUrl(TEST_BASE_URL);
    }
}

出力は次のようになります。

sl@cker:/var/www/demo/protected/tests$ phpunit functional/SiteTest.php
PHPUnit 3.6.12 by Sebastian Bergmann.

Configuration read from /var/www/demo/protected/tests/phpunit.xml

...

Time: 32 seconds, Memory: 8.25Mb

OK (3 tests, 10 assertions)
于 2012-08-25T22:36:31.647 に答える
-1

そして、私の出力が次の場合はどうなりますか?

/usr/local/bin/phpunit: line 1: html: No such file or directory /usr/local/bin/phpunit: line 2: syntax error near unexpected token<' 'usr/local/bin/phpunit: line 2:404見つかりません

あなたが言ったように私は私のファイル構造を持っています

于 2014-06-03T23:27:09.980 に答える