Hi people. <br>
I'm trying to do tools to simplify testing and check &quot;quality&quot; of
packages before saving them (thanks Steph and Lucas your
recommendations on how to do code coverage save me a lot of work).<br>
I want to do some simple services:<br>
&nbsp;&nbsp; - a menu option to run unit tests of a category<br>
&nbsp;&nbsp; - a menu option to browse unit test/tested class<br>
&nbsp;&nbsp; - a menu option to auto categorize uncategorized method
(so the AutomaticMethodCategorizer doesn't have to overwrite the
Browser class)<br>
<br>
And I trying to figure out how to make a new &quot;service&quot;, but I can't figure out what is the correct way to do that.<br>
<br>
I must create a subclass of ServiceProvider and implement #providedCategories?<br>
If this is the case, what is the meaning of the symbol array of arrays returned by this method?<br>
<br>
small critic/question follows:<br>
Why #providedCategories returns an array of symbols and not an object that reifies the provided categories?<br>