<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user">
    <title>gmane.comp.php.phpunit.user</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2114"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2113"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2112"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2111"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2110"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2109"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2108"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2107"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2106"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2105"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2104"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2103"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2102"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2101"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2100"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2099"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2098"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2097"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2099"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2098"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2114">
    <title>The mailinglist will be discontinued</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2114</link>
    <description>&lt;pre&gt; Hello!

 The mailserver that is used to serve this mailinglist will soon be
 retired by Tobias Schlitt, who graciously donated it for the last couple
 of years.

 As the traffic on the PHPUnit mailinglists is not anymore what it used
 to be, I decided to discontinue them in favour of IRC, Twitter,
 StackOverflow, etc.

 Best,
Sebastian

&lt;/pre&gt;</description>
    <dc:creator>Sebastian Bergmann</dc:creator>
    <dc:date>2012-01-14T10:37:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2113">
    <title>RE: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2113</link>
    <description>&lt;pre&gt;Hmm, strange. There's no error output at all? Can you check in your error
logs to see if there's anything at all there? Also, and this is a long shot,
your code seems to be using old PHP 4 conventions (for example, using the
name of the class as the name of the constructor method instead of
__construct()). Sebastian also noted that you were using constructs from old
versions of PHPUnit. Are you definitely running PHP5 and the latest version
of PHPUnit (3.6.x I think)?

 

From: Yevgen VORONETSKYY [mailto:voronetskyy&amp;lt; at &amp;gt;gmail.com] 
Sent: January-11-12 3:56 AM
To: user&amp;lt; at &amp;gt;phpunit.de
Subject: Re: [phpunit-user] PhpUnit on Windows

 

Sorry, guys, but it's always not working. Nothing after running the
phpunit...

After your comments my code looks like :

&amp;lt;?php

require_once 'PHPUnit/Autoload.php';
class ValidateTest extends PHPUnit_Framework_TestCase
{
    // contains the object handle of the string class
    var $abc;

    // constructor of the test suite
    function ValidateTest($name) {

       $this-&amp;gt;PHPUnit_Test&lt;/pre&gt;</description>
    <dc:creator>Jeremy Cook</dc:creator>
    <dc:date>2012-01-11T13:54:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2112">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2112</link>
    <description>&lt;pre&gt;Sorry, guys, but it's always not working. Nothing after running the
phpunit...
After your comments my code looks like :

&amp;lt;?php
require_once 'PHPUnit/Autoload.php';
class ValidateTest extends PHPUnit_Framework_TestCase
{
    // contains the object handle of the string class
    var $abc;
    // constructor of the test suite
    function ValidateTest($name) {
       $this-&amp;gt;PHPUnit_TestCase($name);
    }
    // called before the test functions will be executed
    // this function is defined in PHPUnit_TestCase and overwritten
    // here
    function setUp() {
        // create a new instance of String with the
        // string 'abc'
        $this-&amp;gt;abc = 'abc';
    }
    // called after the test functions are executed
    // this function is defined in PHPUnit_TestCase and overwritten
    // here
    function tearDown() {
        // delete your instance
        unset($this-&amp;gt;abc);
    }
    // test the toString function
    function testToString() {
        $result = $this-&amp;gt;abc-&amp;gt;toString('contains %s');
      &lt;/pre&gt;</description>
    <dc:creator>Yevgen VORONETSKYY</dc:creator>
    <dc:date>2012-01-11T08:56:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2111">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2111</link>
    <description>&lt;pre&gt;How do I unsubscribe from this thread?

On Tue, Jan 10, 2012 at 2:39 PM, Jeremiah Dodds &amp;lt;jeremiah.dodds&amp;lt; at &amp;gt;gmail.com&amp;gt;wrote:




&lt;/pre&gt;</description>
    <dc:creator>Zechariah Campbell</dc:creator>
    <dc:date>2012-01-10T20:43:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2110">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2110</link>
    <description>&lt;pre&gt;On Tue, Jan 10, 2012 at 11:54 AM, Voronetskyy Yevgen
&amp;lt;voronetskyy&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

I have had this happen in PHPUnit before (intermittently, and normally
only for the length of one point release) when I had xdebug.auto_trace
and/or xdebug.default_enable/xdebug.show_session_trace on.

&lt;/pre&gt;</description>
    <dc:creator>Jeremiah Dodds</dc:creator>
    <dc:date>2012-01-10T20:39:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2109">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2109</link>
    <description>&lt;pre&gt;
  The above look like PHPUnit 1.x code (~ 10 years ago). Please have a
  look at the current documentation at

    http://www.phpunit.de/manual/current/en/

&lt;/pre&gt;</description>
    <dc:creator>Sebastian Bergmann</dc:creator>
    <dc:date>2012-01-10T20:26:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2108">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2108</link>
    <description>&lt;pre&gt;David &amp;amp; Jeremy,
Thanks for your insights. I'll try your advice tomorrow. Have a nice day, guys.
I didn't expect such fast responses :)
Thanks all for your activity

--
Voronetskyy Yevgen

Il giorno 10 janv. 2012, alle ore 19:46, "Jeremy Cook" &amp;lt;jeremycook0&amp;lt; at &amp;gt;gmail.com&amp;gt; ha scritto:

&lt;/pre&gt;</description>
    <dc:creator>Voronetskyy Yevgen</dc:creator>
    <dc:date>2012-01-10T18:10:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2107">
    <title>RE: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2107</link>
    <description>&lt;pre&gt;What David says. J

 

Also, assuming you're using the latest version of PHPUnit and that the path
to your PEAR installation is included in PHP's include path (which it seems
to be in your case), change the require statement line to be 'require_once
'PHPUnit/Autoload.php';'. That will make sure that the PHPUnit autoloader is
registered so that any dependencies that PHPUnit has can be loaded.

 

From: David Harkness [mailto:david.h&amp;lt; at &amp;gt;highgearmedia.com] 
Sent: January-10-12 12:32 PM
To: user&amp;lt; at &amp;gt;phpunit.de
Subject: Re: [phpunit-user] PhpUnit on Windows

 

If that is your real code, you are extending the wrong class that doesn't
exist. It must read

.... extends PHPUnit_Framework_TestCase

On Jan 10, 2012 9:24 AM, "Voronetskyy Yevgen" &amp;lt;voronetskyy&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

I'm novice in PHP programming...

 

Below the code of my test class:

&amp;lt;?php

require_once 'PHPUnit.php';

class ValidateTest extends PHPUnit_TestCase
{
    // contains the object handle of the string class
    var $abc;

    // constructor of the test &lt;/pre&gt;</description>
    <dc:creator>Jeremy Cook</dc:creator>
    <dc:date>2012-01-10T17:46:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2106">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2106</link>
    <description>&lt;pre&gt;If that is your real code, you are extending the wrong class that doesn't
exist. It must read

.... extends PHPUnit_Framework_TestCase

On Jan 10, 2012 9:24 AM, "Voronetskyy Yevgen" &amp;lt;voronetskyy&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

I'm novice in PHP programming...

Below the code of my test class:

&amp;lt;?php

require_once 'PHPUnit.php';

class ValidateTest extends PHPUnit_TestCase
{
    // contains the object handle of the string class
    var $abc;

    // constructor of the test suite
    function ValidateTest($name) {

       $this-&amp;gt;PHPUnit_TestCase($name);
    }

    // called before the test functions will be executed
    // this function is defined in PHPUnit_TestCase and overwritten
    // here
    function setUp() {
        // create a new instance of String with the
        // string 'abc'
        $this-&amp;gt;abc = 'abc';
    }

    // called after the test functions are executed
    // this function is defined in PHPUnit_TestCase and overwritten
    // here
    function tearDown() {
        // delete your instance
        un&lt;/pre&gt;</description>
    <dc:creator>David Harkness</dc:creator>
    <dc:date>2012-01-10T17:32:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2105">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2105</link>
    <description>&lt;pre&gt;I'm novice in PHP programming...

Below the code of my test class:
&amp;lt;?php

require_once 'PHPUnit.php';

class ValidateTest extends PHPUnit_TestCase
{
    // contains the object handle of the string class
    var $abc;

    // constructor of the test suite
    function ValidateTest($name) {

       $this-&amp;gt;PHPUnit_TestCase($name);
    }

    // called before the test functions will be executed
    // this function is defined in PHPUnit_TestCase and overwritten
    // here
    function setUp() {
        // create a new instance of String with the
        // string 'abc'
        $this-&amp;gt;abc = 'abc';
    }

    // called after the test functions are executed
    // this function is defined in PHPUnit_TestCase and overwritten
    // here
    function tearDown() {
        // delete your instance
        unset($this-&amp;gt;abc);
    }

    // test the toString function
    function testToString() {
        $result = $this-&amp;gt;abc-&amp;gt;toString('contains %s');
        $expected = 'contains abc';
        $this-&amp;gt;assertTrue($result ==&lt;/pre&gt;</description>
    <dc:creator>Voronetskyy Yevgen</dc:creator>
    <dc:date>2012-01-10T17:24:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2104">
    <title>RE: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2104</link>
    <description>&lt;pre&gt;Hi,

 

Are you definitely extending PHPUnit_Framework_TestCase (or one of the other
PHPUnit test classes) in your test class and following the correct naming
convention? It sounds like PHPUnit is properly installed but it's not seing
any test classes for some reason.

 

Jeremy.

 

From: Voronetskyy Yevgen [mailto:voronetskyy&amp;lt; at &amp;gt;gmail.com] 
Sent: January-10-12 12:14 PM
To: user&amp;lt; at &amp;gt;phpunit.de
Cc: Demian Katz
Subject: Re: [phpunit-user] PhpUnit on Windows

 

No, the output is empty.

 

 

On Jan 10, 2012, at 7:04 PM, Demian Katz wrote:





Does adding the "--verbose" or "--debug" switch give you any additional
information?

- Demian




-----Original Message-----

From: Voronetskyy Yevgen [mailto:voronetskyy&amp;lt; at &amp;gt;gmail.com]

Sent: Tuesday, January 10, 2012 11:54 AM

To: user&amp;lt; at &amp;gt;phpunit.de

Subject: [phpunit-user] PhpUnit on Windows

 

Hi,

 

I'm novice in PHP.

I've installed the PHPUnit with Pear.

When I run the following command from CLI : phpunit --help , I see the

correct help message from PHPUnit.

 

But when&lt;/pre&gt;</description>
    <dc:creator>Jeremy Cook</dc:creator>
    <dc:date>2012-01-10T17:18:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2103">
    <title>Re: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2103</link>
    <description>&lt;pre&gt;No, the output is empty.


On Jan 10, 2012, at 7:04 PM, Demian Katz wrote:


&lt;/pre&gt;</description>
    <dc:creator>Voronetskyy Yevgen</dc:creator>
    <dc:date>2012-01-10T17:14:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2102">
    <title>RE: PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2102</link>
    <description>&lt;pre&gt;Does adding the "--verbose" or "--debug" switch give you any additional information?

- Demian


&lt;/pre&gt;</description>
    <dc:creator>Demian Katz</dc:creator>
    <dc:date>2012-01-10T17:04:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2101">
    <title>PhpUnit on Windows</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2101</link>
    <description>&lt;pre&gt;Hi,

I'm novice in PHP.
I've installed the PHPUnit with Pear.
When I run the following command from CLI : phpunit --help , I see the correct help message from PHPUnit.

But when I give the argument which is a TestCase file or a folder with tests, there is nothing. Any errors. Nothing.

Could you help me to figure out what is wrong with my PhpUnit?

Thanks in advance,
Yevgen
&lt;/pre&gt;</description>
    <dc:creator>Voronetskyy Yevgen</dc:creator>
    <dc:date>2012-01-10T16:54:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2100">
    <title>RE: "Aborted" when requesting coverage</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2100</link>
    <description>&lt;pre&gt;Thanks for the suggestion; unfortunately, it doesn't seem to have helped.

There are no die() or exit() calls in the code I am requesting coverage reporting for.  There are a few such calls in library code outside of the area where I am requesting coverage, but commenting out these calls makes no apparent difference.  I also tried switching the "addUncoveredFilesFromWhitelist" setting to false in case some unwanted logic was being pulled in from somewhere else, but it didn't solve the problem.

I did make two other discoveries which may be significant:


1.)    The "Aborted" message does not seem to be sent to either stdout or stderr!  If I run "phpunit --coverage-text=/tmp/junk.txt &amp;gt; stdout.out 2&amp;gt; stderr.out", neither of the *.out files gets populated, and the word "Aborted" still appears on screen!

2.)    The error seems to be related to the number of files being covered, but not to a specific file.  I tried drastically scaling down the size of my coverage whitelist.  If I request coverage of a single fil&lt;/pre&gt;</description>
    <dc:creator>Demian Katz</dc:creator>
    <dc:date>2012-01-10T14:36:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2099">
    <title>Re: "Aborted" when requesting coverage</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2099</link>
    <description>&lt;pre&gt;Look for calls to die() in the code been covered.

On Mon, Jan 9, 2012 at 3:46 PM, Demian Katz &amp;lt;demian.katz&amp;lt; at &amp;gt;villanova.edu&amp;gt;wrote:

&lt;/pre&gt;</description>
    <dc:creator>Erick Dovale</dc:creator>
    <dc:date>2012-01-09T21:12:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2098">
    <title>RE: "Aborted" when requesting coverage</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2098</link>
    <description>&lt;pre&gt;This problem is still driving me a bit crazy.  I've made a small amount of progress:


1.)    I've found another report of the same (or at least a very similar) problem: http://stackoverflow.com/questions/3065563/phpunit-reporting-aborted-no-matter-what-tests-are-run (unfortunately, there is no satisfactory solution here).

2.)    I realized that part of the reason I was getting so little feedback is that my test suite is output-buffering to allow testing of session-related code, and the "Aborted" message gobbles up the output buffer without displaying any of it.  If I comment out my ob_start() call, I can see the normal PHPUnit messages now...  but that doesn't really tell me anything I didn't already know.  Now, rather than just seeing "Aborted" I see the usual test output, followed by "Generating code coverage report, this may take a moment.Aborted"

3.)    I've tried digging into the PHP_CodeCoverage libraries and putting in debug messages.  As far as I can tell, whatever is triggering the problem is hap&lt;/pre&gt;</description>
    <dc:creator>Demian Katz</dc:creator>
    <dc:date>2012-01-09T20:46:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2097">
    <title>phpUnit with eclipse and PTI</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2097</link>
    <description>&lt;pre&gt;Hi there,

i hope i can find some help here!

Iam trying to use phpunit with the PHP Tools Integration(PTI) - i know this is not a PTI mailing list. But maybe someone can help me.

I installed the PTI package - everytime i try to execute phpunit (or any other PHP Tool like copy paste detector) i get :
Fatal error: Class 'ezcConsoleInput' not found in C:\IDE\eclipse\plugins\org.phpsrc.eclipse.pti.library.pear_1.2.2.R20111119000000\php\library\PEAR\PHPCPD\TextUI\Command.php on line 62

Seems to be a mistake in my configuration!

I am using Windows 7 with eclipse Indigo Service Release 1.

Thanks for your help!

&lt;/pre&gt;</description>
    <dc:creator>Motyka, Axel</dc:creator>
    <dc:date>2012-01-06T09:01:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2099">
    <title>Re: "Aborted" when requesting coverage</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2099</link>
    <description>&lt;pre&gt;Look for calls to die() in the code been covered.

On Mon, Jan 9, 2012 at 3:46 PM, Demian Katz &amp;lt;demian.katz&amp;lt; at &amp;gt;villanova.edu&amp;gt;wrote:

&lt;/pre&gt;</description>
    <dc:creator>Erick Dovale</dc:creator>
    <dc:date>2012-01-09T21:12:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2098">
    <title>RE: "Aborted" when requesting coverage</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2098</link>
    <description>&lt;pre&gt;This problem is still driving me a bit crazy.  I've made a small amount of progress:


1.)    I've found another report of the same (or at least a very similar) problem: http://stackoverflow.com/questions/3065563/phpunit-reporting-aborted-no-matter-what-tests-are-run (unfortunately, there is no satisfactory solution here).

2.)    I realized that part of the reason I was getting so little feedback is that my test suite is output-buffering to allow testing of session-related code, and the "Aborted" message gobbles up the output buffer without displaying any of it.  If I comment out my ob_start() call, I can see the normal PHPUnit messages now...  but that doesn't really tell me anything I didn't already know.  Now, rather than just seeing "Aborted" I see the usual test output, followed by "Generating code coverage report, this may take a moment.Aborted"

3.)    I've tried digging into the PHP_CodeCoverage libraries and putting in debug messages.  As far as I can tell, whatever is triggering the problem is hap&lt;/pre&gt;</description>
    <dc:creator>Demian Katz</dc:creator>
    <dc:date>2012-01-09T20:46:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.php.phpunit.user/2097">
    <title>phpUnit with eclipse and PTI</title>
    <link>http://permalink.gmane.org/gmane.comp.php.phpunit.user/2097</link>
    <description>&lt;pre&gt;Hi there,

i hope i can find some help here!

Iam trying to use phpunit with the PHP Tools Integration(PTI) - i know this is not a PTI mailing list. But maybe someone can help me.

I installed the PTI package - everytime i try to execute phpunit (or any other PHP Tool like copy paste detector) i get :
Fatal error: Class 'ezcConsoleInput' not found in C:\IDE\eclipse\plugins\org.phpsrc.eclipse.pti.library.pear_1.2.2.R20111119000000\php\library\PEAR\PHPCPD\TextUI\Command.php on line 62

Seems to be a mistake in my configuration!

I am using Windows 7 with eclipse Indigo Service Release 1.

Thanks for your help!

&lt;/pre&gt;</description>
    <dc:creator>Motyka, Axel</dc:creator>
    <dc:date>2012-01-06T09:01:09</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.php.phpunit.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.php.phpunit.user</link>
  </textinput>
</rdf:RDF>

