Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[rmf-dev] RMF: How to test?

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

Back to the top