Howdy,

I just saw that the Maven-Scripts look for test suites and execute those:

                    <includes>
<include>**/All*Tests.class</include>
                    </includes>

I am not a big fan of test suites: For one, it's easy to forget to add new tests, and in the GUI it is more convenient to select what's to be tested via Run As | Unit Test.

So instead, I would propose to remove the suites and to use something like this in Maven:

                    <includes>
<include>**/*Test.class</include>
                    </includes>

This would require us to stick to the naming convention to end tests with "Test", which we already do.

Any opinions?

Cheers,

- Michael

--
*Dr. Michael Jastram*   +49 (162) 274 83 94     http://jastram.de
Geschäftsführer         Formal Mind GmbH        http://formalmind.com
Gründer         rheinjug e.V.   http://rheinjug.de
Project Lead Eclipse Requirements Modeling Framework http://eclipse.org/rmf

_______________________________________________
rmf-dev mailing list
rmf-dev@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/rmf-dev

Reply via email to