On Tue, 2002-08-13 at 08:21, John Keyes wrote:
> I have updated CVS HEAD and built maven.  It appears
> to ignore the unit test patterns. I have set a pattern
> to only run specific tests e.g.
> 
>    <unitTest>
>       <includes>**/XXXTest.java</includes>
>     </unitTest>

That should be:

<unitTest>
  <includes>
    <include>**/XXXTest.java</include>
  </includes>
</unitTest>

So that you can have as many includes and excludes as you wish.
 
> But, all classes in the src/test directory are treated
> as unit tests.
> 
> Anyone any ideas?
> 
> -John K
> 
> 
> 
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to