Skip to content
This repository has been archived by the owner on Nov 24, 2017. It is now read-only.

Commit

Permalink
Add PHPUnit configuration file.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 3, 2011
1 parent 4983b08 commit c99c125
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
3 changes: 0 additions & 3 deletions Tests/ClientTest.php
@@ -1,7 +1,4 @@
<?php

require_once 'PHPUnit/Extensions/TicketListener/Jira/Client.php';

/**
* @covers PHPUnit_Extensions_TicketListener_Jira_Client
*/
Expand Down
3 changes: 0 additions & 3 deletions Tests/StatusConverterTest.php
@@ -1,7 +1,4 @@
<?php

require_once 'PHPUnit/Extensions/TicketListener/Jira/StatusConverter.php';

/**
* @covers PHPUnit_Extensions_TicketListener_Jira_StatusConverter
*/
Expand Down
21 changes: 21 additions & 0 deletions phpunit.xml.dist
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="PHPUnit/Extensions/TicketListener/Jira/Autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
strict="true"
verbose="true">
<testsuites>
<testsuite name="PHPUnit_TicketListener_Jira">
<directory suffix="Test.php">Tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">PHPUnit</directory>
<exclude>
<file>PHPUnit/Extensions/TicketListener/Jira/Autoload.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>

0 comments on commit c99c125

Please sign in to comment.