Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


I have two sort of tests in my project. One of them is ending "Test", the other is ending with "IT".
How can i tell emma that it should take all test classes in account?

Kayser

share|improve this question

1 Answer

I haven't tried this myself, but the maven emma plugin properties link has a reference to the following property:

maven.emma.filter.includes Specifies a list of patterns, separated with white space and/or commas. Example: com.foo.*.

You could try specifiying the property with value like **Test **IT - either through maven command line (-Dmaven.emma.filter.includes="**Test **IT") or through plugin configuration (though I don't see documentation on the latter).

share|improve this answer
1  
Unfortunately, this Emma plugin (emma.sourceforge.net/maven-emma-plugin) is not the same as this one (mojo.codehaus.org/emma-maven-plugin). See also: stackoverflow.com/questions/9531608/… – Stewart Mar 27 '12 at 9:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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