Re: Maven2 Surefire Aspectj LTW Spring Integration Tests Don't Work???

2007-02-08 Thread Kaare Nilsen
On 12/01/07, Terry C Martin [EMAIL PROTECTED] wrote: I have an application in which I make use of AspectJ Load-time-weaving to inject pojos with services from Spring. I have some integration tests which test that the pojo is able to be injected and collaborate with the injected service

Surefire, Cargo and Integration Tests

2007-01-25 Thread takai
Hi, i have problems integrating Cargo Deployment and Surefire Tests. I've bound cargo:start to pre-integration-test, surefire:test to integration-tests and finally cargo:stop to post-integration-test. The problem is that surefire executes twice. Once in test:test and once in integration-test

Re: Surefire, Cargo and Integration Tests

2007-01-25 Thread takai
Allright - that worked! Thanks a bunch! -- View this message in context: http://www.nabble.com/Surefire%2C-Cargo-and-Integration-Tests-tf3117463s177.html#a8637699 Sent from the Maven - Users mailing list archive at Nabble.com

Re: Surefire, Cargo and Integration Tests

2007-01-25 Thread Tom Huybrechts
See http://docs.codehaus.org/display/MAVENUSER/Maven+and+Integration+Testing On 1/25/07, takai [EMAIL PROTECTED] wrote: Hi, i have problems integrating Cargo Deployment and Surefire Tests. I've bound cargo:start to pre-integration-test, surefire:test to integration-tests and finally

RE: Surefire, Cargo and Integration Tests

2007-01-25 Thread Bashar Abdul Jawad
Hi, Take a look at this: http://docs.codehaus.org/pages/viewpage.action?pageId=62120 Bashar -Original Message- From: takai [mailto:[EMAIL PROTECTED] Sent: Thursday, January 25, 2007 9:47 AM To: users@maven.apache.org Subject: Surefire, Cargo and Integration Tests Hi, i have

Maven2 Surefire Aspectj LTW Spring Integration Tests Don't Work???

2007-01-12 Thread Terry C Martin
I have an application in which I make use of AspectJ Load-time-weaving to inject pojos with services from Spring. I have some integration tests which test that the pojo is able to be injected and collaborate with the injected service successfully. These tests run successfully within Eclipse's

Re: Help executing both unit and integration tests in a single artifact

2007-01-10 Thread franz see
the test phase, or the integration-test phase. Btw, there are no default goals for the integration-test ( see [1] ), and there are no default directories for the integration test files ( see [2] ). As to how integration tests are usually done by maven, there's usually another maven project just

Re: Help executing both unit and integration tests in a single artifact

2007-01-10 Thread Mark Hobson
directories for the integration test files ( see [2] ). As to how integration tests are usually done by maven, there's usually another maven project just for the integration testing. Cheers, Franz [1] http://docs.codehaus.org/display/MAVENUSER/introduction-to-the-lifecycle [2] http

Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Todd Nine
integration tests running? Thanks, Todd

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Wayne Fay
There are various integration tests run as part of the Maven project build itself, which of course uses Maven to do the build and test etc. I'd take a look at their poms and how they've structured the integration test directories etc to see how you might be able to apply it to your own project

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread drekka
or to add your integration source as part of /src/test/java and /src/test/resources. ciao Derek Wayne Fay wrote: There are various integration tests run as part of the Maven project build itself, which of course uses Maven to do the build and test etc. I'd take a look at their poms and how

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Wayne Fay
Wayne Fay wrote: There are various integration tests run as part of the Maven project build itself, which of course uses Maven to do the build and test etc. I'd take a look at their poms and how they've structured the integration test directories etc to see how you might be able to apply

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Kalle Korhonen
at an answer would dbe to either create subprojects or to add your integration source as part of /src/test/java and /src/test/resources. ciao Derek Wayne Fay wrote: There are various integration tests run as part of the Maven project build itself, which of course uses Maven to do the build

Running both unit and integration tests in the same module

2006-11-27 Thread Julien HENRY
Hi, I would like to run both unit tests and integration tests in the same project. I don't want to create a separate module for integration tests (unlike Better Builds With Maven book). With only one project (and one pom), I want the following lifecycle: Phase |Action

Re: Running both unit and integration tests in the same module

2006-11-27 Thread Mark Hobson
On 27/11/06, Julien HENRY [EMAIL PROTECTED] wrote: I would like to run both unit tests and integration tests in the same project. I don't want to create a separate module for integration tests (unlike Better Builds With Maven book). You can achieve this, but it's not too pretty. See: http

Re : Running both unit and integration tests in the same module

2006-11-27 Thread Julien HENRY
OK, so I'll have to wait for Maven 2.1 ;) Thanks - Message d'origine De : Mark Hobson [EMAIL PROTECTED] À : Maven Users List users@maven.apache.org Envoyé le : Lundi, 27 Novembre 2006, 10h33mn 07s Objet : Re: Running both unit and integration tests in the same module On 27/11/06

executing junit (integration) tests against a different project

2006-11-27 Thread Nathan Coast
Hi, I have a slightly unusual situation where I have shared overlay webapps that are assembled into standalone webapps and into larger aggregate webapps. The httpunit (junit) integration tests are contained within the overlay (component) project. However, I'd like to execute the same

RE: executing junit (integration) tests against a different project

2006-11-27 Thread Nir Feldman
] Sent: Monday, November 27, 2006 8:47 PM To: Maven Users Subject: executing junit (integration) tests against a different project Hi, I have a slightly unusual situation where I have shared overlay webapps that are assembled into standalone webapps and into larger aggregate webapps

Re: executing junit (integration) tests against a different project

2006-11-27 Thread Nathan Coast
PROTECTED] Sent: Monday, November 27, 2006 8:47 PM To: Maven Users Subject: executing junit (integration) tests against a different project Hi, I have a slightly unusual situation where I have shared overlay webapps that are assembled into standalone webapps and into larger aggregate webapps

RE: executing junit (integration) tests against a different project

2006-11-27 Thread Nir Feldman
(integration) tests against a different project Hi Nir, yes I was thinking that, but then there's a problem if the aggregator project has tests of its own, or if the aggregator project aggregates more than one overlay webapp. I'm thinking copying all test sources into a single folder may be the only

Re: exclude integration tests from test phase in surefire-plugin ?

2006-10-15 Thread Adam Hardy
in the integration-test phase. These are all in in the .../integration/.. package I have the following in my pom, but the plugin still insists on running the integration tests in the test phase. What is wrong with this configuration ? plugin artifactIdmaven-surefire-plugin/artifactId

Re: exclude integration tests from test phase in surefire-plugin ?

2006-10-15 Thread Wendy Smoak
On 10/12/06, Jan-Olav Eide [EMAIL PROTECTED] wrote: I have a set of tests that I only want to run in the integration-test phase. These are all in in the .../integration/.. package I have the following in my pom, but the plugin still insists on running the integration tests in the test phase

exclude integration tests from test phase in surefire-plugin ?

2006-10-12 Thread Jan-Olav Eide
I have a set of tests that I only want to run in the integration-test phase. These are all in in the .../integration/.. package I have the following in my pom, but the plugin still insists on running the integration tests in the test phase. What is wrong with this configuration ? plugin

Re: Multipart question regarding releasing with an assembly and integration tests.

2006-09-01 Thread Todd Nine
can test it in clustered mode. 3. How do I lay out my projects for integration testing? I have 3 projects. messageDrivenPojo messageDrivenDelegate messageDrivenSender I need to integration test both messageDrivenSender and messageDrivenDelegate. Message driven delegate integration tests should

Re: Multipart question regarding releasing with an assembly and integration tests.

2006-09-01 Thread Wendy Smoak
structure do I lay out, do I use the following? src/integration-tests/java src/integration-test/resources I'm not clear on how to include this as a project, but exclude the tests from the unit tests, and only run them during the integration tests, and I can't find any documentation on it. You can only

Multipart question regarding releasing with an assembly and integration tests.

2006-08-30 Thread Todd Nine
that contains all the jars and the class path for the executable jar. Is it possible for me to automatically run the assembly and upload the created zip during release:perform? 2. I have a project that has both unit tests and integration tests. The unit tests use mock objects and obviously

Re: Multipart question regarding releasing with an assembly and integration tests.

2006-08-30 Thread Barrie Treloar
and integration tests. The unit tests use mock objects and obviously execute automatically when test is performed. How do I specify the tests that need to run for integration testing? Also note that I will need to start Jboss in the pre-integration-test phase and shut it down in the post

Re: Multipart question regarding releasing with an assembly and integration tests.

2006-08-30 Thread Wendy Smoak
On 8/30/06, Todd Nine [EMAIL PROTECTED] wrote: 2. I have a project that has both unit tests and integration tests. The unit tests use mock objects and obviously execute automatically when test is performed. How do I specify the tests that need to run for integration testing? Also note that I

[m2] surefire and integration tests - discrepancy

2006-08-21 Thread Tony Truong
in surefire (or in cargo)? NOTE: Both are using the same jdk + junit version. Tony. -- View this message in context: http://www.nabble.com/-m2--surefire-and-integration-tests---discrepancy-tf2138839.html#a5902585 Sent from the Maven - Users forum at Nabble.com

RE: [m2] surefire and integration tests - discrepancy

2006-08-21 Thread Vincent Massol
[mailto:[EMAIL PROTECTED] Sent: lundi 21 août 2006 09:53 To: users@maven.apache.org Subject: [m2] surefire and integration tests - discrepancy Hi all, I am currently running functional tests with surefire + cargo and IntelliJ IDEA. I have set both to the same container (tomcat5). When

RE: [m2] surefire and integration tests - discrepancy

2006-08-21 Thread Tony Truong
:[EMAIL PROTECTED] Sent: lundi 21 août 2006 09:53 To: users@maven.apache.org Subject: [m2] surefire and integration tests - discrepancy Hi all, I am currently running functional tests with surefire + cargo and IntelliJ IDEA. I have set both to the same container (tomcat5). When

RE: [m2] surefire and integration tests - discrepancy

2006-08-21 Thread Vincent Massol
setting the basedir environment variable to the same location in IDEA as it's set up in Maven2? -Vincent -Original Message- From: Tony Truong [mailto:[EMAIL PROTECTED] Sent: lundi 21 août 2006 10:15 To: users@maven.apache.org Subject: RE: [m2] surefire and integration tests - discrepancy

[SOLVED, sort of] -javaagent in integration tests

2006-08-10 Thread Andrus Adamchik
Ok, looks like I found the problem - when using -javaagent option, all agent dependencies have to be passed as -bootclasspath in argLine/. I'll see if I can decouple the agent from the rest of the framework. In the meantime, is there a Maven environment variable that I can reference in the

Classpath for integration tests

2006-07-24 Thread Simon Kitching
Hi, I'm trying to write a maven2 pom.xml for commons-logging. Running the unit tests is a little tricky, because there are lots of tests that explicitly configure their own classpath, using the artifacts created during the build process. I've therefore got a set of unit tests that run in the

Re: Classpath for integration tests

2006-07-24 Thread Simon Kitching
Sorry, please ignore previous email. The problem is that my unit test is explicitly looking for junit via the system classloader. Of course surefire is loading junit via a custom classloader. Regards, Simon On Tue, 2006-07-25 at 10:34 +1200, Simon Kitching wrote: Hi, I'm trying to write a

[m2] maven-it-plugin - how to create integration tests?

2006-07-04 Thread Barrie Treloar
Can anyone point me to any documentation on the maven-it-plugin? I expect I've missed something but - I can't find the plugin documentation at maven.apache.org - there is very little in the mail archives about it - googling hasn't really helped find the scm for the plugin either... From my

Re: [m2] maven-it-plugin - how to create integration tests?

2006-07-04 Thread Barrie Treloar
- googling hasn't really helped find the scm for the plugin either... I'm blind. It's available at http://svn.apache.org/repos/asf/maven/sandbox/plugins/maven-it-plugin - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Proper In-Container Integration Tests

2006-06-13 Thread Wendy Smoak
On 6/12/06, Jeremy Whitlock [EMAIL PROTECTED] wrote: I would like to know the proper way to run in-container integration/unit tests for applications built/tested using Maven. I have tried to run jetty6:run before the test phase but it does not start as a daemon or forked so Maven never

Re: Proper In-Container Integration Tests

2006-06-13 Thread Jeremy Whitlock
Wendy, How funny to run into you. I read some of your stuff earlier thanks to Google. I was going to do the same thing by requiring Jetty for the test phase and having an extendable test who's setUp() method would embed a Jetty instance then deploy the webapp. I didn't look too far into it

Re: Proper In-Container Integration Tests

2006-06-13 Thread Jakub Pawlowicz
Hi Jeremy, Have you read Better builds with Maven (http://www.mergere.com/m2book_download.jsp)? In chapter 4.13 (Testing J2EE Applications) there's an instruction on how to start a container (Geronimo in that case) with Cargo in the pre-integration phase and to stop it in the post-integration

Proper In-Container Integration Tests

2006-06-12 Thread Jeremy Whitlock
Hi all, I would like to know the proper way to run in-container integration/unit tests for applications built/tested using Maven. I have tried to run jetty6:run before the test phase but it does not start as a daemon or forked so Maven never continues to finish running the rest of the

Re: [m2] Unit tests and integration tests in the same module?

2006-06-08 Thread Wendy Smoak
test case.) I do keep integration tests in a separate module for my production apps, but the use case here is a simple 'blank' app (or an archetype) that someone can quickly understand and get up to speed for development and testing. (See MNG-2344.) -- Wendy

RE: [m2] Unit tests and integration tests in the same module?

2006-06-07 Thread Vincent Massol
To: Maven Users List Subject: [m2] Unit tests and integration tests in the same module? [moved from [EMAIL PROTECTED] Context: We want to run both 'normal' unit tests, and integration tests that require a webapp to be deployed in a container, from the same module. On 6/5/06, Brett Porter [EMAIL

Re: [m2] Unit tests and integration tests in the same module?

2006-06-07 Thread Tomasz Pik
On 6/7/06, Vincent Massol [EMAIL PROTECTED] wrote: I don't believe it's currently possible within the same build module. We started discussing it on http://docs.codehaus.org/display/MAVEN/best+practices+-+testing+strategies What about: * src/itest instead of src/it *

RE: [m2] Unit tests and integration tests in the same module?

2006-06-07 Thread Jason Chaffee
Users List' Subject: RE: [m2] Unit tests and integration tests in the same module? I don't believe it's currently possible within the same build module. We started discussing it on http://docs.codehaus.org/display/MAVEN/best+practices+-+testing+strategies -Vincent -Original Message- From

RE: [m2] Unit tests and integration tests in the same module?

2006-06-07 Thread Jason Chaffee
Users List Subject: RE: [m2] Unit tests and integration tests in the same module? I was able to do by using testng and not providing a testng.xml file for the test phase, but only for the integration-test phase. It is kinda of a hack, but it works. -Original Message- From: Vincent Massol

[m2] Unit tests and integration tests in the same module?

2006-06-06 Thread Wendy Smoak
[moved from [EMAIL PROTECTED] Context: We want to run both 'normal' unit tests, and integration tests that require a webapp to be deployed in a container, from the same module. On 6/5/06, Brett Porter [EMAIL PROTECTED] wrote: It *should* still be possible to achieve what you want currently (I

RE: [m2] code coverage for multiple modules that use integration tests

2006-05-18 Thread Daun DeFrance
: Wednesday, May 03, 2006 3:58 PM To: Maven users list Subject: [m2] code coverage for multiple modules that use integration tests Okay, I have a number of modules and I want to generate code coverage for them with cobertura. Some of the classes can be tested with normal unit tests so

[m2] code coverage for multiple modules that use integration tests

2006-05-03 Thread Dan Adams
Okay, I have a number of modules and I want to generate code coverage for them with cobertura. Some of the classes can be tested with normal unit tests so they are not a problem. Some of the classes, however, are Tapestry components. To test them I have a separate module called integration-tests

RE: [m2] code coverage for multiple modules that use integration tests

2006-05-03 Thread Vincent Massol
for multiple modules that use integration tests Okay, I have a number of modules and I want to generate code coverage for them with cobertura. Some of the classes can be tested with normal unit tests so they are not a problem. Some of the classes, however, are Tapestry components. To test them I

[m2] RMIService in SureFire Integration Tests Fails

2006-04-18 Thread Stevenson, Chris
Hi James, I did indeed, for me the problem was with the path to where m2 was installed on windows. It took me a while to find it but this is a known bug in the jdk when invoking an RMI server from a directory with spaces in the path.. So to get around it I moved m2 from c:\program

Re: How to bind execution of integration tests to integration-test phase

2006-03-18 Thread Pete
[EMAIL PROTECTED] wrote: Back on Feb 11 there was a thread regarding integration testing with the subject line How to bind execution of integration tests to integration-test phase. Like Pete, who offered good advice in that thread, I also need to do in-container testing via Cactus, run

Re: How to bind execution of integration tests to integration-test phase

2006-03-10 Thread Dave Muirhead
Back on Feb 11 there was a thread regarding integration testing with the subject line How to bind execution of integration tests to integration-test phase. Like Pete, who offered good advice in that thread, I also need to do in-container testing via Cactus, run CruiseControl and deploy to OAS

RE: How to bind execution of integration tests to integration-test phase

2006-02-12 Thread Vincent Massol
execution of integration tests to integration- test phase I have achieved integration testing (both JunitEE/Cactus and JUnits calling remote interfaces) in M2 using a very simple lightweight POM for each discrete task/execution in the integration phase e.g. + runtests-integration pom.xml

RE: How to bind execution of integration tests to integration-test phase

2006-02-12 Thread Vincent Massol
Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: dimanche 12 février 2006 10:53 To: 'Maven Users List' Subject: RE: How to bind execution of integration tests to integration- test phase Hi Pete, Yes, you've found the only possible way as of now to perform integration

Re: How to bind execution of integration tests to integration-test phase

2006-02-11 Thread Pete
to Ant Plugins. I'm hoping that when M2 supports integration tests more I can migrate to the approved strategy, but this works right now, we have Applications (both EARs) that are built with M2 via CruiseControl, the above integration projects start the container run all the integration tests

How to bind execution of integration tests to integration-test phase

2006-01-10 Thread Bengt-Erik Fröberg
Hi I have a set of JUnit unit tests which are executed during the test lifecycle phase. Now I want to add integration-test classes in another directory to be executed during the integration-test phase. How do I accomplish that? Using Maven2 and ANT. Regards, /B-E

RE: How to bind execution of integration tests to integration-test phase

2006-01-10 Thread Vincent Massol
Hi, -Original Message- From: Bengt-Erik Fröberg [mailto:[EMAIL PROTECTED] Sent: mardi 10 janvier 2006 14:34 To: 'Maven Users List' Subject: How to bind execution of integration tests to integration-test phase Hi I have a set of JUnit unit tests which are executed during

SV: How to bind execution of integration tests to integration-test phase

2006-01-10 Thread Bengt-Erik Fröberg
of integration tests to integration-test phase Hi, -Original Message- From: Bengt-Erik Fröberg [mailto:[EMAIL PROTECTED] Sent: mardi 10 janvier 2006 14:34 To: 'Maven Users List' Subject: How to bind execution of integration tests to integration-test phase Hi I have a set

RE: How to bind execution of integration tests to integration-test phase

2006-01-10 Thread Vincent Massol
-Original Message- From: Bengt-Erik Fröberg [mailto:[EMAIL PROTECTED] Sent: mardi 10 janvier 2006 16:28 To: 'Maven Users List' Subject: SV: How to bind execution of integration tests to integration- test phase Hi and thanks for answering. I see but what does

SV: How to bind execution of integration tests to integration-test phase

2006-01-10 Thread Bengt-Erik Fröberg
of integration tests to integration-test phase -Original Message- From: Bengt-Erik Fröberg [mailto:[EMAIL PROTECTED] Sent: mardi 10 janvier 2006 16:28 To: 'Maven Users List' Subject: SV: How to bind execution of integration tests to integration- test phase Hi and thanks for answering

[M2] Integration tests location

2006-01-10 Thread Alexandre Poitras
Hi, I was just wondering where I should put my integration tests if I want to keep them separate from my unit tests wich are of course under /src/test/java. Any idea? Thank! -- Alexandre Poitras Québec, Canada

RE: [M2] Integration tests location

2006-01-10 Thread Vincent Massol
-Original Message- From: Alexandre Poitras [mailto:[EMAIL PROTECTED] Sent: mardi 10 janvier 2006 21:12 To: Maven Users List Subject: [M2] Integration tests location Hi, I was just wondering where I should put my integration tests if I want to keep them separate from my unit

Re: Example of a plugin with integration tests

2005-12-14 Thread Edwin Punzalan
: https://svn.apache.org/repos/asf/maven/plugins/trunk Jochen Wiedmann wrote: Hi, can anyone point me to a plugin with included integration tests, that I may use as an example? Preferrably, a source generating plugin? All plugins that I know so far, have either a simple test directory

Example of a plugin with integration tests

2005-12-13 Thread Jochen Wiedmann
Hi, can anyone point me to a plugin with included integration tests, that I may use as an example? Preferrably, a source generating plugin? All plugins that I know so far, have either a simple test directory, or no tests at all. Regards, Jochen

RE: [M2] Any guides or recommendations for Cactus / JUnitEE / Integration Tests

2005-11-16 Thread Vincent Massol
: [M2] Any guides or recommendations for Cactus / JUnitEE / Integration Tests I've reached the stage where I want to be able to run some JUnits that require :- - Incontainer JUnits (to be run by JUnitEE or Cactus) - JUnits that call Session Beans (therefore J2EE container needs

Maven 1.1 JUnit vs Integration tests

2005-09-17 Thread Mark Slater
I'm using Maven 1.1 right now, and I'd like to separate my JUnit unit tests from my JUnit integration tests. The former test only a single class/layer of the app, while the latter test from the service layer to the database. I'm using Spring and JDO2, and the app is a web services app. I

Re: Maven 1.1 JUnit vs Integration tests

2005-09-17 Thread Mark Slater
Whoops, sorry. I'm using Maven 1.0.2 actually. Mark On Sep 17, 2005, at 11:51 AM, Mark Slater wrote: I'm using Maven 1.1 right now, and I'd like to separate my JUnit unit tests from my JUnit integration tests. The former test only a single class/layer of the app, while the latter test from

Re: Maven 1.1 JUnit vs Integration tests

2005-09-17 Thread Thomas Van de Velde
You could create another project that holds only your integration tests. Cheers, Thomas On 9/17/05, Mark Slater [EMAIL PROTECTED] wrote: Whoops, sorry. I'm using Maven 1.0.2 actually. Mark On Sep 17, 2005, at 11:51 AM, Mark Slater wrote: I'm using Maven 1.1 right now, and I'd like

RE: Running integration tests

2005-05-16 Thread David Jackman
them more closely associated with the project it's testing, but could do it as a last resort. -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005 10:56 AM To: 'Maven Users List' Subject: RE: Running integration tests -Original Message

Running integration tests

2005-05-13 Thread David Jackman
For one of my projects, I need to add some integration tests that are separate from the unit tests. The unit tests work as they should--they are fully automated and run with every build. The integration tests are different in that they can't be fully automated since they depend on some external

RE: Running integration tests

2005-05-13 Thread Vincent Massol
-Original Message- From: David Jackman [mailto:[EMAIL PROTECTED] Sent: vendredi 13 mai 2005 18:32 To: Maven Users List Subject: Running integration tests For one of my projects, I need to add some integration tests that are separate from the unit tests. The unit tests work

RE: Running integration tests

2005-05-13 Thread Vincent Massol
-Original Message- From: David Jackman [mailto:[EMAIL PROTECTED] Sent: vendredi 13 mai 2005 18:32 To: Maven Users List Subject: Running integration tests For one of my projects, I need to add some integration tests that are separate from the unit tests. The unit tests work

Re: Running integration tests

2005-05-13 Thread Thomas Van de Velde
tests For one of my projects, I need to add some integration tests that are separate from the unit tests. The unit tests work as they should--they are fully automated and run with every build. The integration tests are different in that they can't be fully automated since they depend

RE: Running integration tests

2005-05-13 Thread Vincent Massol
-Original Message- From: Thomas Van de Velde [mailto:[EMAIL PROTECTED] Sent: vendredi 13 mai 2005 20:01 To: Maven Users List Subject: Re: Running integration tests Vincent, Any plans on building Cargo support for WAS? Definitely... as soon as someone is interested

RE: Running integration tests

2005-05-13 Thread Vincent Massol
-Original Message- From: Thomas Van de Velde [mailto:[EMAIL PROTECTED] Sent: vendredi 13 mai 2005 20:01 To: Maven Users List Subject: Re: Running integration tests Vincent, Any plans on building Cargo support for WAS? Definitely... as soon as someone is interested

Newbie: Unit Tests AND Integration Tests problem

2005-03-30 Thread dhay
Hi, I'm a newbie to Maven, and trying to set up our project to run both integration tests and unit tests. The unit tests are fine - just specified the directory under the unitTestSourceDirectory tag. However, we have integration tests that reside in a sister directory ie test.mypackage.unit

Re: Newbie: Unit Tests AND Integration Tests problem

2005-03-30 Thread Brett Porter
You have two options: - create your own plugin that runs the unit tests from the second directory - separate the integration tests out into a separate project, and run them using the completed JAR from the other project If the integration tests run under different conditions, they are generally

Re: Running integration tests

2005-03-18 Thread Ralph Pllath
Thanks Dan. I set up a separate project as you suggested, which includes a dependency on the main project. This works fine, but it requires me to jar:install my main project each time I run the integration tests. So I'd like to make the integration tests a subproject and add a dependency

Re: Running integration tests

2005-03-18 Thread dan tran
: Thanks Dan. I set up a separate project as you suggested, which includes a dependency on the main project. This works fine, but it requires me to jar:install my main project each time I run the integration tests. So I'd like to make the integration tests a subproject and add a dependency

Re: Running integration tests

2005-03-03 Thread Ralph Pöllath
stay in the main source directory. (not the unit test src) After that, use jelly/java to drive your integration in maven.xml -D On Wed, 2 Mar 2005 17:42:31 +0100, Ralph Pöllath [EMAIL PROTECTED] wrote: Hi, In addition to my unit tests, I have some integration tests which I'd like to be able to run

Running integration tests

2005-03-02 Thread Ralph Pöllath
Hi, In addition to my unit tests, I have some integration tests which I'd like to be able to run separately (they require a database to be available, etc). What's the preferred way to do this with maven? Thanks, -Ralph

Re: Running integration tests

2005-03-02 Thread dan tran
PROTECTED] wrote: Hi, In addition to my unit tests, I have some integration tests which I'd like to be able to run separately (they require a database to be available, etc). What's the preferred way to do this with maven? Thanks, -Ralph

RE: Query on current approach to integration tests

2004-04-26 Thread Maczka Michal
-Original Message- From: Tim Stephenson [mailto:[EMAIL PROTECTED] Sent: Monday, April 26, 2004 1:29 PM To: '[EMAIL PROTECTED]' Subject: Query on current approach to integration tests Hi, I notice that there have been a few changes to the project xsd (and supporting

Re: Query on current approach to integration tests

2004-04-26 Thread Jeffrey D. Brekke
tests ( basically how we are doing it in ant now ). I like the idea of having a separate project, especially for acceptance/functional testing. The other thing that the pain of separating what you define ( and myself btw ) as integration tests in maven provides is motivation for not writing slow

integration tests

2003-04-02 Thread Stephen Haberman
Hi, I'm working on a webapp where I've got a bunch of domain model unit tests in src/test and then want to put some HttpUnit integration tests in something like src/iu-test or src/web-test. I was hoping to use the pom's integrationUnitTestDirectory element, but it seems to be no longer used

<    1   2   3