Antwort: Re: how to separate Unit Tests from Integration-Tests with JUnit 4.x?

2008-05-30 Thread torsten . reinhard
do you think? torsten Kalle Korhonen [EMAIL PROTECTED] 30.05.2008 00:35 Bitte antworten an Maven Users List users@maven.apache.org An Maven Users List users@maven.apache.org Kopie Thema Re: how to separate Unit Tests from Integration-Tests with JUnit 4.x? Hmm yes, but Torsten said

how to separate Unit Tests from Integration-Tests with JUnit 4.x?

2008-05-29 Thread torsten . reinhard
Hi, Actually, we have mixed JUnit Testcases in our modules - some of them can be run standalone with no database connection or any other environment, others need environment. I now want to separate those tests into different categories, but I donĀ“t want to - manually create a

Re: how to separate Unit Tests from Integration-Tests with JUnit 4.x?

2008-05-29 Thread Kalle Korhonen
Standard answer is with naming convention, see http://www.mail-archive.com/users@maven.apache.org/msg81355.html. Kalle On Thu, May 29, 2008 at 7:54 AM, [EMAIL PROTECTED] wrote: Hi, Actually, we have mixed JUnit Testcases in our modules - some of them can be run standalone with no database

Re: how to separate Unit Tests from Integration-Tests with JUnit 4.x?

2008-05-29 Thread Paul Davis
Another option is to place the integration tests into a separate module. On Thu, May 29, 2008 at 8:12 AM, Kalle Korhonen [EMAIL PROTECTED] wrote: Standard answer is with naming convention, see http://www.mail-archive.com/users@maven.apache.org/msg81355.html. Kalle On Thu, May 29, 2008 at

Re: how to separate Unit Tests from Integration-Tests with JUnit 4.x?

2008-05-29 Thread Kalle Korhonen
Hmm yes, but Torsten said that was exactly what he wanted to avoid. In addition to naming conventions for unit integration tests, we use a separate module for our heavier, end-to-end functional tests. Kalle On Thu, May 29, 2008 at 10:06 AM, Paul Davis [EMAIL PROTECTED] wrote: Another option