|
Project Information
Links
|
Closing and reopening Google Code issues via PHPUnit tests. Inspired by Raphael Stolt's article Closing and reopening GitHub issues via PHPUnit tests. Read this article about how to use PHPUnit's ticket listeners. Example configuration: <phpunit>
<listeners>
<listener class="PHPUnit_Extensions_TicketListener_GoogleCode"
file="/path/to/PHPUnit/Extensions/TicketListener/GoogleCode.php">
<arguments>
<string>GOOGLE_ACCOUNT_EMAIL</string>
<string>GOOGLE_ACCOUNT_PASSWORD</string>
<string>GOOGLE_CODE_PROJECT_NAME</string>
<boolean>true</boolean>
<string>Fixed</string>
<string>Started</string>
</arguments>
</listener>
</listeners>
</phpunit>Arguments:
|