0
votes
1answer
20 views

getting error: Could not load JDBC driver class [org.postgresql.Driver]

I'm trying run a Junit test,have configured before only projects without maven, now i am trying to make this integration, but i stop in this following error: java.lang.IllegalStateException: ...
1
vote
1answer
20 views

Maven profile parameters aren't loaded in Spring JUnit context

I'm running JUnit tests with Maven profile. Maven profile looks so: <profile> <id>someProfile</id> <properties> ... ...
0
votes
0answers
17 views

JUnit tests should be faster when using Categories

I have 1000+ tests. With maven-surefire-plugin and Junit 4.8 I have configured categories: <plugin> <artifactId>maven-surefire-plugin</artifactId> ...
0
votes
1answer
17 views

java.lang.NoSuchFieldError: NO_FORMAT when tunning maven surefire junit tests

When trying to run junit tests from maven (maven surefire plugin) I get the following error: java.lang.NoSuchFieldError: NO_FORMAT This error seems to come from any call to my log4j logger. So when ...
0
votes
2answers
43 views

Excluding files with Maven doesn't work

I run into problems at Maven compile when using JMockit together with JUnit and Android: [INFO] UNEXPECTED TOP-LEVEL EXCEPTION: [INFO] java.lang.IllegalArgumentException: already added: ...
0
votes
1answer
25 views

how to “debug as maven test” in eclipse (sts)

I have written test cases in JUnit and they are executing fine when I use run as - maven test. But although I put debug points and select debug as - maven test, debugging does not work. I use ...
0
votes
0answers
43 views

skip aspect when running Junit test - maven test

I have aspects in my spring mvc project. It uses Before annotation to check authorization access before every controller method. Now I need to writes some JUnit Test cases for Spring MVC controller ...
1
vote
0answers
49 views

Testing a Geo Transformation fails in maven, works in eclipse

In our current project we use a maven setup to manage dependencies and run unit tests. At some point in development one of our tests stoped working (we are not sure at what point exactly, so we don't ...
0
votes
2answers
22 views

Why Unit test of WebServer project shows strange behaviour?

I am writing Unit test of my project HTTP THREADPOOLED WEB SERVER. For that I am using Junit in Maven. In the mean while I stuck in one place, and the doubt is as follows, There is one class ...
0
votes
0answers
34 views

Ant JUnit task NoClassDefFoundError when run in existing JVM

I went for the JUnit Ant task solution where I provide the JUnit library through the task's element: <target name="test" depends="compile-tests" description="Run unit tests"> <junit ...
2
votes
1answer
33 views

possible to parameterise junit tests and run with maven?

I have a bunch of selenium webdriver tests split in different classes. I run these tests across a number of sites but I don't want to run them all on every site. In the past I used msBuild and c# and ...
0
votes
1answer
81 views

Failed to load ApplicationContext

Currently I'm setting-up a Spring MVC + Hibernate + Maven Web Application. Im stack with a JUnit error forbidding the run of my application with tomcat Here is the JUnit failure trace : ...
1
vote
0answers
27 views

HashSet turning into TreeSet when unit testing JDO GAE/J app in maven

I have a Java app for GAE which uses maven (the net.kindleit version) with the following classes: public class C1 { ... @Persistent(mappedBy = "c1") @Element(dependent = "true") ...
0
votes
1answer
94 views

Running TestSuite in JUnit4 and Maven

I am integrating an external junit.framework.TestSuite into my library which is built using Maven and JUnit4. The typical tests, if not all of them, are kicked off using JUnit4 annotations. How do I ...
1
vote
1answer
22 views

Shared test resources for different projects [duplicate]

I have two projects that need the same test resources. I'm using maven for dependency handling and eclipse for running the tests. How can I share the test resources with maven without cloning them?
0
votes
1answer
90 views

Issue on Running JUnit Selenium tests in Jenkins

I'm beginner by using Selenium and Jenkins. So here is my problem. I got on a Linux VM, jenkins which is installed and got plugins : JUnit attachment and filesystem_SCM. I got in a folder of that VM ...
0
votes
0answers
62 views

What is absolutely required for a standalone parallelized Selenium Grid 2 Program in Java?

The search for setting-up a testing environment for a selenium grid 2 program using parallelized testing proved exhaustive. There were many, likely credible sources that would give conflicting ...
1
vote
0answers
32 views

Shared test code in multi-project Maven Java environment

I have a Maven multi-project set-up with a parent POM, one library-type jar and several application-jars using this library. Now I'd like to take advantage of this library-type jar's testing facility ...
0
votes
1answer
79 views

How to execute multiple JUnit test suite at a time..!

I have written a multiple JUnit test suite for running multiple test cases.(multiple JUnit test like AllTest1.java/AllTest2.java is requirement of my web project) Now, I want to run my multiple test ...
0
votes
1answer
71 views

Manifest.mf cannot find org.junit

I'm trying to run jUnit tests for an Eclipse RCP application with Tycho. For that I created a simple jUnit test, that runs when I click on Run as > jUnit-Test. But when I want to run it with mvn ...
1
vote
1answer
58 views

Exclude maven dependency for one specific unit test

I'd like to remove a dependency for a unit test. I found how to do it in this answer. But I'd like to remove a dependency for only one specific test, not for all my tests. Is there a way to do that? ...
0
votes
3answers
111 views

Running JUnit integration tests in Eclipse that need Maven pre-integration-test executions?

I have writting some JUnit integration tests that currently run from Maven (via the command line or out CI server). These integration tests automatically configure and startup the database and ...
0
votes
1answer
35 views

Maven surefire test results for a project with various modules

I've a parent pom project with various submodules. I want to get a report of the unit tests results but using surfire plugin, I get an independent result for each module. I mean, if I execute: mvn ...
0
votes
1answer
32 views

jenkins Running jobs based on packages available

i have test packages like test.regression.pacakgea test.regression.pacakgeb test.regression.pacakgec these packages are developed by different people and am running them on VMs. i have configured ...
0
votes
1answer
46 views

How can I get Eclipse to re-compile my JUnit test when I make a change to it?

I'm using Eclipse Juno on Mac 10.7.5, Java 6, Junit 4.8.1, and Maven 3.0.3. I have imported a Maven project into Eclipse but am having trouble getting JUnit test compilations to refresh. When I edit ...
1
vote
2answers
97 views

Stop tests execution after first error/failure with maven surefire

I'm using maven surefire plugin to execute the junit tests of my application. I want to stop the execution after the first failure or error. In my case, these are integration tests that modify the ...
6
votes
2answers
173 views

NoSuchMethodError with Hamcrest 1.3 & JUnit 4.11

Another instance of the NoSuchMethodError for the JUnit & Hamcrest combination. Offending code: assertThat(dirReader.document(0).getFields(), hasItem( new FeatureMatcher<IndexableField, ...
0
votes
1answer
137 views

JUnit Test cases failing while running using Maven but works with Eclipse

I have a Junit test case which doesn't work if I run using Maven. But the same test case works when I run using Eclipse. My Junit class is like this. @RunWith(SpringJUnit4ClassRunner.class) ...
1
vote
3answers
148 views

TeamCity Allowing Successful Builds in Spite of Failed Tests

I am using TeamCity and JUnit to build and test some software I am writing. Because I am using a test-driven development pattern, I build Unit tests that will test how a feature should work (initially ...
0
votes
0answers
66 views

Maven surefire tests failing in Spring framework project

Maven is unable to successfully run my JUnit tests though they are being run without any problem on my Eclipse. I'm unable to solve it from the debug messages. It is probably something to do with the ...
0
votes
1answer
42 views

extending junit testcase from another maven module

In my maven project, I have module A that is dependent on module B. In my module A test case, I am trying to extend one of module B's test case, however I encountered the following trouble whereby ...
0
votes
2answers
100 views

junit and hamcrest declaration

I am using junit at 4.10 and declared hamcrest-core at 1.3 and hamcrest-library at 1.3. My question is are hamcrest-library and hamcrest-core embedded in junit 4.10. what about junit 4.11? ...
-2
votes
1answer
111 views

Shutdown hook is not printing to console in JUnit Test executed via Maven

I have a simple JUnit test which is ran by Maven through a method marked by @Test annotation. I want to place the shutdown hook into that test because I want to print some test results if the user ...
3
votes
0answers
338 views

JUnit + Maven + Parallel Test Execution Error

I have a problem executing JUnit Tests in parallel when Using JUnit, Groovy, Spock and Maven. When executing them, I get the following after test are passed succesfully: [INFO] ...
2
votes
2answers
99 views

How to exclude specific unit tests from default “maven test” and eclipse “run as junit test”

In my code I have 2 types of tests: fast unit tests and slow performance tests. I am trying to ensure that the performance tests are never run unless the user explicitly wants to run them (e.g. using ...
0
votes
1answer
120 views

Same JUnit tests working in Ant but not in Maven

I'm with a very strange problem and would like to understand it. Well, the problem is that some of my JUnit tests crashed when I tried to run Maven Test, but in Ant or Eclipse's plugin it works ...
1
vote
1answer
95 views

How do I spin up a MySQL database in Maven for use with our JUnit tests?

We're using Maven 3.0.3, MySql 5.5, JUnit 4.8.1, and Liquibase. Here's what we would like to do. I would like to spin up a MySQL database, run our liquibase database scripts against it, and then run ...
1
vote
1answer
194 views

Maven - package org.junit does not exist even though dependency added

I'm creating testing class to my maven project, but maven can't import JUnit, any ideas why? class Recipebook/src/test/java/RecipebookTest.java: import org.junit.Test; import org.junit.Before; ...
0
votes
1answer
80 views

Embedded Bootstrap Jboss Datasource Driver Issue

I've been working on this problem for a couple days, and it's driving me crazy. I've got a piece of somewhat legacy code, using Jboss 4.2.3. I recently converted the project to Maven for dependency ...
0
votes
1answer
81 views

Does Parameterized JUnit test correct with `mvn test`?

I'm just implemented a JUnit test case using JUnit 4.11 following the example: https://github.com/junit-team/junit/blob/master/doc/ReleaseNotes4.11.md#example-1 I create a maven project using ...
0
votes
1answer
216 views

Maven build error on Junit test case for service layer

I am trying to write a simple Junit test case to test service/dao layer of my project. But I get compilation error when I build it using Maven. Kindly help me with this. Code: ...
0
votes
0answers
72 views

JUnit test with weld-se not working

A hello world application which is using Weld-SE is running fine in eclipse (run configuration with specification of the main class "org.jboss.weld.environment.se.StartMain"). It just prints out a ...
0
votes
1answer
95 views

Tests stuck on Configuring TestNG with: TestNG652Configurator

I have some TestNG tests in my project running alongside of jUnit tests. Everyone coexists peacefully and stuff runs as expected, until one day instead of working all the time things changed to ...
2
votes
1answer
50 views

Bamboo doesn't recognize test in my Spring project

I have a Spring project (Apache CXF, Spring, Hibernate, Maven ...) hosted on BitBucket and I'm trying to use Bamboo as my CI server. My idea is deploying the code directly to Heroku from Bamboo so ...
0
votes
1answer
116 views

Spring ContextConfiguration Initializers not run under maven test

I have a Junit test running flawlessely within a Spring application context. The application context includes two xml files as well as an initializer. The JUnit base class is as follows: ...
0
votes
0answers
127 views

Jenkins - JUnit result XMLs in Maven build

I have a build for my maven projects in Jenkins. As a part of build process, we have to trigger a external integration testing environment using Shell scripts , which gives back the test results in ...
0
votes
4answers
357 views

Maven Code Coverage Report for JUnit Test [closed]

I been looking at IntelliJ and I love the Code Coverage Report for JUnit Test but I would like to know if anyone is using anything or know of any plugs that can be used with Maven to build a report at ...
0
votes
1answer
167 views

NoClassDefFoundError: StoppedByUserException with Eclipse and Quick JUnit

Eclipse with Quick JUnit plugin gives the me following error when I try to run a JUnit test with Ctrl+0: java.lang.NoClassDefFoundError: org/junit/runner/notification/StoppedByUserException at ...
1
vote
0answers
181 views

Netbeans jUnit 4 - Java EE API is missing on project classpath

I have clear maven web app project. I add jUnit to pom. <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> ...
0
votes
4answers
147 views

Junit package naming conflict in Eclipse (Maven)

I want to use the default maven directories for my junit tests, so: in Eclipse I created a test/java folder. I created a junit class in there with a package com.xxx.xxx.tracker.utils.test; But ...

1 2 3 4 5 6