Tagged Questions
0
votes
1answer
20 views
How do I create a self contained package of Selenium JUnit Tests?
I have a bunch of Selenium Tests which I currently run on JUnit from Eclipse. (Using the Firefox webDriver)
I need to create an easy to install/use package of these tests to give to various members of ...
2
votes
1answer
33 views
Syntax of hamcrest matchers
In one of our projects I stumbled upon the following line of code (it uses hamcrest matchers 1.3):
assertThat(someReport.getSomeException(), Matchers.<SomeException>notNullValue())
Two ...
0
votes
1answer
18 views
Junit Integration tests are not compiled on ant but the unit tests get compiled
I have some Unit tests and integration tests in a class. On running the tests on jUnit, all tests pass. There are no failures or errors. (I use eclipse). But when I try to compile the same class in ...
-2
votes
5answers
74 views
Having trouble calling a method in a different class with Java
Okay so I'm doing some practice with JUnit Test cases and I'm trying to call a method from a different class in Java, but I can't figure it out. The classes are in different SOURCE FOLDERS so not sure ...
0
votes
0answers
15 views
Invalid column name $JACOCODATA using ant jacoco and junit
I am using jacoco for generating my test cases report. But while building the project I am getting the error as :
org.springframework.jdbc.BadSqlGrammarException: StatementCallback; bad SQL grammar ...
1
vote
1answer
54 views
Adding Android library project to Eclipse build path?
I have a multi module Android Maven project which consists of several projects and an Android library project (baselib) where I run non Android based JUnit tests.
This works as long as I run the ...
0
votes
1answer
31 views
java.lang.NoClassDefFoundError when running Android JUnit test
I've three projects in workspace: Common, Client and Server.
Common: The classes are used in both Client and Server project.
Now, Common project contains a Class User
However when I run the ...
0
votes
1answer
21 views
What's the use of the configuration in classpath for Eclipse project: “org.eclipse.jdt.junit.JUNIT_CONTAINER/4”
I have finished one unit test class, but when I run it, it returns with an Exception. the following is my test cases:
import java.util.Date;
import org.junit.Rule;
import org.junit.Test;
import ...
0
votes
0answers
23 views
Eclipse parameterized test freeze with JUnit 4.11
Configured eclipse indigo SR2 to use junit 4.11 with hamcrest-core-1.3.jar.
Whenever test is run in ide with this:
@Parameters(name = "{0}")
the JUnit console halts at zero. e.g. "0/100".
It ...
0
votes
0answers
67 views
Email ID validation failed in ant
I have written a JUnit testcase which validates email ID provided to it, this testcase passes email ID to validation framework which returns true or false, Validation framework class uses mail.jar to ...
0
votes
2answers
29 views
Final JUnit method stub
When would I want to make my test method signatures final? Isn't it bad practice to extend test cases? This seems an unnessesary declaration.
public final void testMyMethod()
This question arose ...
3
votes
2answers
87 views
Eclipse junit test discovery
In eclipse - the junit test runner will find this test:
class Blah {
public static class Tests {
[Test] void testOne() {}
}}
but it won't find this test
class Blah<T> {
...
0
votes
1answer
55 views
Can't run Unit tests from eclipse
If I create a test class I can't run it from eclipse until I have run it via maven on the command line first. My project build path output folder is pointing to project/target/classes. And build ...
0
votes
3answers
39 views
The purpose of JUnit test?
In order to create a properly running JAR file from my Eclipse project, does the JUnit test of the project have to be without any errors and failures? Or it is not neccessary?
0
votes
0answers
18 views
Can I copy JUint test cases folder from one workspace to another in Eclipse?
If I o the above thing I am getting JUnit Not found prompt in eclipse.
1
vote
1answer
53 views
JUnit - Listener for when ALL test classes have been executed?
I've been searching for a while but I still can't find a way to do what I want.
I run my unit tests in Eclipse with the "Run as JUnit test" on the whole project.
I implemented a custom RunListener ...
0
votes
1answer
62 views
Eclipse (CDT) plugin for running tests and browsing report
Google's answers (hear! hear!) and Eclipse Market Place search results on this topic simply drive me crazy! And apparently the proposed SO answers aren't really helpful either.
I'm looking for an ...
0
votes
4answers
51 views
How to know the version of JUnit in Eclipse
In eclipse:
Window --> Preferences
Expand Java at left side of panel --> JUnit is there under Java
How can I know the version of JUnit in eclipse?
1
vote
0answers
35 views
Java Application Debugging Using Eclipse Scrapbook
I have a Java application with several (10) packages and almost 50 classes. My task is to understand the application (with poor documentation and no test cases). The application seem to have several ...
0
votes
1answer
40 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
40 views
How to easily find all JUnit tests in Eclipse that have no test methods
I need to easily retrieve all JUnit tests in Eclipse that have no test methods. I need to add an @Ignore tag and import the Ignore class to those classes. Any easy way to do this? :)
1
vote
0answers
62 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 ...
10
votes
3answers
232 views
JUnit parameterized tests: how do I run only 1 specific test from IntelliJ/Eclipse?
I have a @Parameterized junit test that spawns 50 tests:
@RunWith(Parameterized.class)
public class NurseRosteringSolveAllTurtleTest ... {
@Parameterized.Parameters(name = "{index}: {0}")
...
1
vote
2answers
49 views
not all junit tests are running in eclipse
I have a java project in eclipse, when I press the project right click -> run as junit some tests do not run. I attached a picture, see YamiMailSenderTest for example.
When I try to run the tests ...
2
votes
0answers
50 views
Eclipse Junit run configuration that takes the current selected test class as an arg?
Instead of constantly creating identical debug configuraitons for my test cases, I would like to be able to simply save a few arguments common across all my Junit tests, right click on a specific ...
0
votes
1answer
61 views
Junit, Selenium, and NoClassDefFound
I feel like a complete newb here. I recently switch to using a Mac for development and i'm running into problems with some of my projects. I feel like its a class pathing issue within the macs ...
0
votes
0answers
41 views
How to change the port of JUnit debugging
I am using the Remote Java Application to debug my JUnit tests. There are two involved ports: one is for Remote Java Application, as in the pic it is 30303, which I can change in the Eclipse; the ...
0
votes
0answers
30 views
How to resolve “Failed during test case generation GC overhead limit exceeded” while creating Junits using CodePro?
This What does the error-message 'java.lang.OutOfMemoryError: GC overhead limit exceeded' mean in Java?
discussed the reason but provides no soultion.
Also, i got a wild suggestion that i ...
0
votes
3answers
65 views
Showing JUnit view in Eclipse when running tests from Code
When I run just my Testclass in Eclipse I get the JUnit view showing the tree structure and if the test was successful. If I start my Test from code:
JUnitCore core = new JUnitCore();
...
1
vote
1answer
29 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?
2
votes
1answer
50 views
Running all test classes in all projects [duplicate]
I have the following project setup:
The application consists of several projects where each project have a test package. These test packages contain the test classes for this particular project and ...
2
votes
1answer
23 views
GAE: Separating tests from app code
I am writing a small Google App Engine application in Java using Eclipse. My code is stored in src/cinemasderot, and my tests are stored in src/tests.
Quoting the Google App Engine documentation:
...
0
votes
2answers
147 views
JUnit test fails with java.lang.ClassNotFoundException: com.mysql.jdbc.Driver on Tycho environment
I have a very strange situation. I have a set of eclipse plugin projects which I am using tycho and maven for building them. I used JDBC driver in one of the projects and I have a test plugin to test ...
0
votes
0answers
51 views
Programatically export XML results from JUnit tests?
I am running JUnit tests in Eclipse. At the end I would like to export the results in an XML file. This can be done manually using the export feature in the JUnit view.
Is it possible to ...
0
votes
0answers
59 views
I have to write imports by myself in Eclipse. What's the reason behind this? [duplicate]
Every time I have to use a class in JUnit jar file I have to write import statements by myself via Build path. I added my jar, but still the problem remains. What's the reasons behind this? How can I ...
1
vote
1answer
95 views
JUnit test hangs
I have the following problem. One of my JUnit tests gets stuck in eclipse doing nothing, but the blue arrow indicating that this test is currently running persists.
It is definitely no infinite loop ...
0
votes
0answers
72 views
Why is the launching of JUnit tests unexpectedly failing?
I'm trying to get unit tests running for an OS project I imported from github using the Spring Source eclipse IDE. On the import from github there is no project, so used the wizard to create a new ...
0
votes
1answer
87 views
Running JUnit on Eclipse
I am trying to run the below code in Eclipse.
It's giving me an error "Editor does not contain a main type" but it does as you can see public static void main(String args[]).
Anyone know how to ...
0
votes
1answer
50 views
Eclipse cant find some of the JUnit files
I have a maven project with spring. And we also have alot of JUnit test classes. We are using Eclipse. Every now and then - quite often actually - eclipse shows some (not all) of the test classes as ...
0
votes
3answers
145 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
71 views
Is there a way to weave jUnit tests with AspectJ being in two different projects?
I´m trying to intercept webdriver methods inside JUnit tests that are in one java project. I've created another project with Aspects but could not integrate them both to work together.
Basically I ...
0
votes
2answers
50 views
@Rule declaration causes error on a debug attempt
A groovy JUnit test class has only one static declaration:
@Rule
public static ErrorCollector errorCollector;
After an attempt to launch the test in debug mode an exception raises:
...
0
votes
0answers
31 views
Qunit For Jquery dialog
I was trying to write a qunit test for UI Jquery
$('document').ready(function() {
$("#tree").dynatree({
title : "List of Web Services",
checkbox : true,
selectMode : 3,
...
1
vote
0answers
61 views
Eclipse ClassNotLoadedException while testing array class type object
ERROR:
org.eclipse.debug.core.DebugException: com.sun.jdi.ClassNotLoadedException: Type has not been loaded occurred while retrieving component type of array
CAUSE:
Typer[] typeResult;
for( String ...
2
votes
3answers
143 views
Do not run a category of slow JUnit tests by default in Maven and every IDE (Eclipse, IntelliJ, …) without an explicit TestSuite
I have a set of really slow tests, which take a week to run. (They literally run some code non-stop for about a week).
Naturally, no developer (or even the default build job) wants to run these ...
0
votes
0answers
29 views
For eclipse junit how do I test a class file without the source code? [duplicate]
I was given some .class files but not their source code.
I know what methods this .class file has.
I want to use junit to test this .class file method functionality.
How do I do this since eclipse ...
0
votes
1answer
55 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 ...
0
votes
0answers
49 views
Update multiple eclipse run configuration user classpath setting
Background:
ProjectA is an Eclipse 4.2.1 java project with numerous junit 4 test classes. Each junit test is run individually at times and therefore has a corresponding run configuration. Each run ...
0
votes
0answers
86 views
Rest service running with JUnit
I have created sample project as given in soapui.org. see below link:
http://www.soapui.org/REST-Testing/getting-started.html . After creating I have exported the testCase to a folder as ...
0
votes
0answers
84 views
How to integrate web service (soap) with JUnit
I am having few web services and working good with soapUI tool. I am trying to run as a suite. I have soapUI, junit and all other necessary libraries added to eclipse and system path has been setup to ...



