I can not find a tutorial on the subject. Before running the unit test, the Joomla framework must be loaded ... A code example would be welcome, thanks !

link|improve this question

50% accept rate
feedback

1 Answer

You might be looking for the official Joomla Unit Testing Documentation - It contains example tests and more stuff to help you getting started.

link|improve this answer
Thanks. I found that in the doc: Why can't I use "phpunit testname.php" to run my tests? The test facility has to do some work to be able to load the "Joomla!" framework and to be able to inject mock classes. It's difficult to do this from the PHPUnit test runner, so we built our own. Also, the Joomla test runner has specific options designed to make it easy to select specific tests. Over time we will add more functionality to the test runner so it has many of the capabilities of the phpunit command. – Jean-Pierre Schnyder Jul 5 '11 at 9:25
There is a thing called bootstrap in PHPUnit which might be interesting for your own test-suite. Additionally you can put a default configuration into an XML file. If you can solve the integration issues with these methods I would favour them over a self-written cli-runner at first. However if the joomla uses it's own test runner then this is needed for their suite. – hakre Jul 5 '11 at 11:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.