Unit Test naming conventions test:test

2004-05-25 Thread Ian Black
Is the POM the only place where unit test names are referred to...

So if I have this...

unitTest
  resources
resource
  directorysrc/test/directory
  includes
include**/*.properties/include
include**/*.xml/include
include**/*.xsd/include
  /includes
/resource
  /resources

  includes
include**/Test*.java/include
include**/*Bug.*/include
  /includes

/unitTest

...then logically my Unit Tests should be prefixed with 'Test'.

The problem is they're not being picked up when I run test:test.
I have another project where the above naming convention does work and I
can't see where else the filenames are referred to.

I'm sure it's obvious...but anyone know?

Thanks.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.688 / Virus Database: 449 - Release Date: 18/05/2004


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



RE: Unit Test naming conventions test:test

2004-05-25 Thread Chuck Daniels
Have you set unitTestSourceDirectory?

You must have this:

build
  unitTestSourceDirectorysrc/test/unitTestSourceDirectory
  unitTest
...
  /unitTest
/build

Of course, replace src/test if this is not actually where you keep your test
sources.

 -Original Message-
 From: Ian Black [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, May 25, 2004 8:52 AM
 To: Maven Users List
 Subject: Unit Test naming conventions  test:test


 Is the POM the only place where unit test names are referred to...

 So if I have this...

 unitTest
   resources
 resource
   directorysrc/test/directory
   includes
 include**/*.properties/include
 include**/*.xml/include
 include**/*.xsd/include
   /includes
 /resource
   /resources

   includes
 include**/Test*.java/include
 include**/*Bug.*/include
   /includes

 /unitTest

 ...then logically my Unit Tests should be prefixed with 'Test'.

 The problem is they're not being picked up when I run test:test.
 I have another project where the above naming convention does work and I
 can't see where else the filenames are referred to.

 I'm sure it's obvious...but anyone know?

 Thanks.
 ---
 Outgoing mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.688 / Virus Database: 449 - Release Date: 18/05/2004


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


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