[symfony-users] Re: testing code in plugins

2009-04-04 Thread Bernhard Schussek
Hi Matthias, > I'm already using the sfTaskExtraPlugin. The problem I actually had > was thet the bootstrap scripts were not working out of the box for me > as they don't have access to the symfony libs by default.. Yeah, that's one thing I forgot to mention. You need to export the path variable

[symfony-users] Re: testing code in plugins

2009-04-04 Thread Matthias N.
On 4 Apr., 15:13, Bernhard Schussek wrote: > Hi Matthias, > > If you want to execute particular tests, you can just execute them > from the console using "php". E.g. > $ php plugins/myPlugin/test/unit/myClassTest.php Hi Bernhard, thanks for your detailed information! Let's hope the patch will m

[symfony-users] Re: testing code in plugins

2009-04-04 Thread Bernhard Schussek
Hi Matthias, If you want to execute particular tests, you can just execute them from the console using "php". E.g. $ php plugins/myPlugin/test/unit/myClassTest.php If you want to execute sets of tests, you have to create PHP files that execute these sets, and then execute these PHP files. The sy