maven and testng

2006-11-07 Thread Roger Keays
For those people who have struggled using maven with testng, I've blogged about how to get it working without using surefire: http://www.ninthavenue.com.au/blog/maven_and_testng I hope this helps someone. -- Ninth Avenue Software p: +61 7 3137 1351 (UTC

Maven and TestNG

2006-11-22 Thread Wim Deblauwe
Hi, what is the current status on Maven2 and TestNG? This blog entry[1] shows me a way to avoid surefire, but this does not feel right. The official TestNG documentation[2] talks about using surefire 2.8-SNAPSHOT, but when I declare this version, all I get from maven is this: [INFO] ---

Re: Maven and TestNG

2006-11-22 Thread Marco Mistroni
Hello, try with this org.testng testng 5.1 test jdk15 maven-surefire-plugin src/test/resources/testing.xml hth marco

Re: Maven and TestNG

2006-11-22 Thread Wim Deblauwe
Thanks, that runs my tests. It a pity that I have to add all my packages to my testng.xml file. Do you know a way to say: recursively from this one? This is what I got now:

Re: Maven and TestNG

2006-11-22 Thread Marco Mistroni
Hello Wim, sorry havent' had a look at TestNG in a bit (i m doing it on my leasure time..which is almost null). I m sure there are parameters in TestNG with which you can configure dynamically the tests that run (for example, by making all tests part of the same group and specifying which test t

Using maven and testng

2006-11-22 Thread Lee Bieber
I'm trying to get testng working with maven. I've configured my pom.xml per the documentation .. org.testng testng 5.1 test jdk15

Re: Using maven and testng

2007-04-03 Thread Wayne Fay
I've run into exactly the same problem... Did you ever get any resolution to this, Lee? Wayne On 11/22/06, Lee Bieber <[EMAIL PROTECTED]> wrote: I'm trying to get testng working with maven. I've configured my pom.xml per the documentation .. org.testng

Using maven and testng - collab workaround

2007-11-13 Thread Erik Drolshammer
Hi! I got maven to run with testng 5.5 by using org.apache.maven.plugins maven-surefire-plugin 2.4-collab-SNAPSHOT and org.testng testng 5.5 test jdk15 However, I can't get

Re: Using maven and testng - collab workaround

2007-11-13 Thread Erik Drolshammer
I reposted my question in a new thread. Search for subject "Testng with testng.xml config file". -- Regards Erik Drolshammer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to test an ejb package with Maven and TestNG?

2006-06-27 Thread Naresh Bhatia
I have a maven project with packaging set to ejb. I would like to test this project outside an ejb container by simply calling POJO classes inside it. I have written a very simple test using TestNG: public class UserServiceTest { @Test public void testGetAllUsers() { ...

Re: How to test an ejb package with Maven and TestNG?

2006-06-28 Thread Tim Kettler
Hi, see comment inline... Naresh Bhatia schrieb: I have a maven project with packaging set to ejb. I would like to test this project outside an ejb container by simply calling POJO classes inside it. I have written a very simple test using TestNG: public class UserServiceTest { @T

RE: How to test an ejb package with Maven and TestNG?

2006-06-28 Thread Naresh Bhatia
List Subject: Re: How to test an ejb package with Maven and TestNG? Hi, see comment inline... Naresh Bhatia schrieb: > I have a maven project with packaging set to ejb. I would like to test > this project outside an ejb container by simply calling POJO classes > inside it. I have writt