ZEND framework & PHPUnit с муравьем, имеющим "нераспознанную опцию --report" - PullRequest
1 голос
/ 15 марта 2012

Привет, я делаю небольшое приложение из книги по разработке веб-приложений Zend Framework 1.8 под названием storefront.

Я установил PHPUnit, версия - PHPUnit 3.6.10 от Себастьяна Бергманна.а также я установил apache ant.

как свою электронную книгу. Я создаю папку сборки и запускаю команду ant внутри этой папки через CMD (папка содержит файлы ant.properties, build.xml)

iпри выполнении команды ant получено сообщение BUILD FAILED, в разделе теста «нераспознанная опция --report» есть сообщение

вот мой build.xml

 <?xml version="1.0" encoding="UTF-8"?>
<project name="StoreFront" default="build" basedir="../">

    <target name="getProps">
       <property file="${basedir}/build/ant.properties" />

       <condition property="script-suffix" value=".bat" else="">
            <os family="windows" />
       </condition>

       <echo message="---- Build Properties ----" />
       <echo message="" />

       <echo message="OS is ${os.name}" />
       <echo message="Basedir is ${basedir}" />
       <echo message="Property file is ${basedir}/build/ant.properties" />
       <echo message="Script-suffix is ${script-suffix}" />

       <echo message="" />
       <echo message="---- Storefront Properties ----" />
       <echo message="" />

       <echo message="Environment is ${environment}" />    

    </target>

    <target name="test" depends="getProps">
       <exec dir="${basedir}/tests" executable="phpunit${script-suffix}" failonerror="true">
          <arg line="--colors --report ${basedir}/build/report
             --log-xml ${basedir}/build/logs/phpunit.xml 
             --log-pmd ${basedir}/build/logs/phpunit.pmd.xml
             --log-metrics ${basedir}/build/logs/phpunit.metrics.xml
             --coverage-xml ${basedir}/build/logs/phpunit.coverage.xml 
             AllTests.php"/>
       </exec>
    </target>

    <target name="configure" depends="getProps">
       <copy file="${basedir}/application/application.php.dist"
             tofile="${basedir}/application/application.php" overwrite="true" />
       <replace file="${basedir}/application/application.php" token="@ENVIRONMENT@" value="${environment}" />
    </target>

    <target name="buildPreparation">
        <mkdir dir="${basedir}/build/logs" />
        <mkdir dir="${basedir}/build/report" />
    </target>

    <target name="clean">
        <delete dir="${basedir}/build/logs" />
        <delete dir="${basedir}/build/report" />
    </target>

    <target name="build" depends="buildPreparation,configure,test"/>
</project>

вот сообщение iполучил в cmd

   C:\wamp\www\storefront\build>ant
Buildfile: C:\wamp\www\storefront\build\build.xml

buildPreparation:

getProps:
     [echo] ---- Build Properties ----
     [echo]
     [echo] OS is Windows 7
     [echo] Basedir is C:\wamp\www\storefront
     [echo] Property file is C:\wamp\www\storefront/build/ant.properties
     [echo] Script-suffix is .bat
     [echo]
     [echo] ---- Storefront Properties ----
     [echo]
     [echo] Environment is development

configure:
     [copy] Copying 1 file to C:\wamp\www\storefront\application

test:
     [exec] PHPUnit 3.6.10 by Sebastian Bergmann.
     [exec]
     [exec] unrecognized option --report

BUILD FAILED
C:\wamp\www\storefront\build\build.xml:28: exec returned: 1

Total time: 0 seconds

C:\wamp\www\storefront\build>phpunit --version
PHPUnit 3.6.10 by Sebastian Bergmann.

как я могу исправить это я просто следуя инструкциям в книге

1 Ответ

2 голосов
/ 15 марта 2012

--report не является допустимым ключом командной строки в PHPUnit 3.6.

Пожалуйста, прочтите руководство для допустимых опций - http://www.phpunit.de/manual/current/en/textui.html#textui.clioptions

...