Popular unit testing framework for Java and Scala. The latest version, JUnit 4, supports rich annotation-based and parameterized tests. Consider using in conjunction with the Java or Scala tag to indicate your use case.
0
votes
0answers
8 views
Test Harness to run JUnit, Node.js and other tests with?
first off this is my first post, so go easy. I am looking for some sort of test harness that would allow me to pre-load data into a SQL server database, run node.js tests, junit tests, maybe some ruby ...
0
votes
1answer
19 views
Hamcrest hasItem and Mockito verify inconsistency
I've ran into an issue with hamcrest and mockito.
Here is what I'm trying to do:
public class A{
public void foo(List<B> arg){
return;
}
}
public BMatcher extends ...
0
votes
1answer
12 views
Junit HTML report builder
Consider the following XML results of a JUnit test:
<?xml version="1.0" ?>
<testsuite errors="0" failures="1" name="TheTest-20130618162859"
tests="3" time="0.000">
...
-1
votes
0answers
11 views
Jmeter is failing to retain variable value of thread Group 1 which is required by Thread group2
I have a scenario with Jmeter.
I have injected my Junits to Jmeter.
Junit would look like:
public class class1 extends class2{
@org.junit.Test
public void method1(){
String s;
...
0
votes
0answers
21 views
Maven Surefire Doesn't Play Nice With Junit 3 Suites
I'm using maven to execute a very large junit 3 test suite, output the results with surefire to xml, and then display them using Hudson. All the tests were written with the structure:
public static ...
0
votes
0answers
32 views
org.apache.maven.surefire.util.SurefireReflectionException using maven
I am facing the following error while I am trying to test my application using junit.
org.apache.maven.surefire.util.SurefireReflectionException: java.lang.reflect.InvocationTargetException; nested ...
0
votes
1answer
32 views
Running an individual JUnit test from separate class [duplicate]
I am trying to run tests from a separate class where information can be compiled and reported. I am having difficulty running individual tests, however.
I tried:
for (int i = 0; i < testRuns; ...
0
votes
1answer
38 views
test data verification or behavior verification
I've a RESTful webservice which has rest layer - service layer - dao layer. This service result different result set in different scenario like- customer with list of incidents, customer with a ...
0
votes
0answers
14 views
How to test ws-transaction web service?
My project is writing our first web services, and we need it to participate in 2-phase commit global transactions. We're finally figured out how to do that, and proved it via a client invoked from a ...
0
votes
1answer
33 views
Mocking with functionality
I am very new to Mockito, please let me know if I'm on the right track. I'm trying to mock method functionality using Mockito.
sscce
public SUTclass {
private final DependencyInjectedObj dep; // ...
0
votes
1answer
17 views
Run Junit test from .jar file shows “Build Successful” also when test failed
I have created a .jar file that contains a junit test. When I run my Junit test in Ant with task "junit", then it shows me the correct output (BUILD FAILED when the Junit test fails).
But when I put ...
1
vote
3answers
57 views
How to reuse existing JUnit tests in another test class?
how can I reuse JUnit tests in another testclass?
For example:
public TestClass1 {
@Test
public void testSomething(){...}
}
public TestClass2 {
@Test
public void ...
0
votes
1answer
36 views
Junit 2.0 : Different results for same test
I'm having different results for the same test in JUnit. The first test seems to be OK and to verify all the assertions, I believe that the class works fine. Then I rerun the test and I get an ...
1
vote
0answers
72 views
Test case error tolerance
So here's my situation: I have a test that I would run multiple times and I'd like to set some sort of error tolerance i.e. if one run fails it doesn't report the testcase to have Failed. Say I run it ...
0
votes
4answers
68 views
How to JUnit test ParseException
So, I am working on a project, and I have to test if my method catches a ParseException when it occures. Here is how the method that I need to test looks like:
public void convertToModel(final ...
0
votes
1answer
32 views
Can't find JUnit on Mac
So I am trying to build a project from this tutorial. I run ant, and get the error. The first thing I see is
...error: package junit.framework does not exist
[javac] import ...
0
votes
1answer
14 views
How to expect void method call with any argument using EasyMock
As a part of unit test I need to mock a void function(Which accept any non-primitive paramter. e.g. MAP) call with any argument.
mockObj.myMethod(<anyObject>)
Is it possible to do this with ...
0
votes
0answers
25 views
Error using Categories in JUnit
I've created one test class and one category & one test suite. The Test class is not parameterised but I've been getting error "Category annotations on Parameterized classes are not supported on ...
1
vote
1answer
41 views
AssertionFailedError: null on boolean method
I am testing a method that takes two objects as parameters and returns a boolean. When I use and assertTrue or assertFalse on the method in question I get the following test failure: ...
1
vote
1answer
47 views
How to test a java interface? [duplicate]
I have an interface and a class that implements that interface and overrides it's methods:
public interface Intr {
public int method1();
public int method2();
}
public class example implements ...
0
votes
2answers
23 views
Refresh Repository Populator for each test
I'm writing integration tests for a Spring Batch job. I want to use repository populators to load test data into an in-memory database before each test.
The examples I'm finding so far seem to ...
-1
votes
4answers
122 views
How can i test an interface?
I want to do a JUnit test case for an interface, as you know i can't make an object from the interface and i don't want any classes names to show up in that test, i want only to test the interface and ...
0
votes
1answer
18 views
how to write junit for existing application what should be taken care for that
i am confuse about how to implement Junit in my existing application.i am not getting from where i should start.
i read many article and tutorials from internet about Junit most of them shows syntax ...
0
votes
1answer
40 views
autowired dependency not getting mocked while executing test case with junit and mockito
I am using Junit4 and Mockito for test cases, in the following code dbprop.getProperty("config") is throwing a NullPointerException because dbProp is null. Please help me out why it was not mocked?
...
0
votes
2answers
29 views
Junit test with osgi blueprint (apache aries or eclipse gemini)
i really can´t find a way to junit test blueprint. With Spring DM (this dead project) was very simple to test the same spring beans with junit and some mocks. In blueprint (either aries or gemini) is ...
0
votes
1answer
38 views
Executing Junit/Selenium tests from a web page
I am looking to run my Selenium Junits through a web page(jsp). I can create a simple jsp form , but not sure if my jsp can call my junit. I want this web page to be accesible to other people in the ...
0
votes
1answer
27 views
Junit Test Cases Generator
I have an existing Java EE Application Code, for which i need to write JUnit Test Cases.
Is there a free easy to use tool which will generate basic Junit Test Cases for me for the code base (hundreds ...
0
votes
1answer
38 views
Direct dependency and transitive dependency in test scope through maven
is direct dependency available in test scope while using maven?
like if user-management have a dependency on utility module in normal flow
just like:
<dependency>
...
2
votes
1answer
34 views
What is wrong with a test that was working and has stopped without any changes being made?
I am using Spring 3.1.1 and Hibernate. I want to write Tests for the DAO Objects. The Problem is that I get an java.lang.IllegalStateException: Failed to load ApplicationContext
in the test classes I ...
0
votes
0answers
22 views
Emacs JUnit “Error: Could not find or load main class org.junit.runner.JUnitCore”
So I was able to successfully compile and run JUnit tests on my SimpleCodeTest.java file in the Mac OSX terminal. I wrote:
javac SimpleCodeTest.java
and got no errors.
Then I ran:
java ...
0
votes
0answers
61 views
System.exit in finally block
I ran into some issue in my little pretty pony project.
I am using Maven to build and deploy my application to the device, and then I run integration tests.
I implemented some checks before tests ...
2
votes
1answer
41 views
Ways to measure memory consumption while running JUnit tests
I need to measure how much of memory do my JUnit tests consume.
So the most obvious (but not convinient) way is to run JVM with arguments like "-Xms128m -Xmx512m" and track when I'll get the ...
0
votes
1answer
25 views
Junit Test unable to load Properties File
I'm trying to run a simple test to check values in a properties file which I've saved in the src/test/resources folder of my Maven project but the JUnit test is failing. My test is picking up the File ...
1
vote
1answer
14 views
Performing a custom action when a given mocked void method is called
I would like to be able for Mockito to perform a custom action when a given void method is called.
Say I have the following code:
@Autowired
private ProfileService profileService;
@Autowired
...
0
votes
0answers
18 views
How to use TestNG with Selenium WebDriver in Twist?
I am using JUnit with Selenium WebDriver in Twist. How can I use TestNG instead of JUnit with WebDriver java code in Twist?
0
votes
2answers
44 views
Mockito. Mock objects calling final classes static methods
I just started mocking different layers of our application. I came to a point where one of my mock objects is returning NPE when it calls a final class static method. is there a way around this?
eg
...
1
vote
1answer
40 views
Junit Testing JNDI InitialContext outside the application server
Context context = new InitialContext();
dataSource = (DataSource) context.lookup("java:comp/env/jdbc/multiDS");
connection = dataSource.getConnection();
Please help me to mock the above code.
Hi ...
0
votes
3answers
41 views
How to write test of async methods in TDD?
I need to write unit test of an asynchronous method.
In my case I have client(simply tcp client). It send message to server(tcp server). Server takes this message asynchronously.
I want to get the ...
0
votes
1answer
22 views
Running a smoke set of JUnit Selenium tests in Jenkins
How could I easily run only a smoke set of JUnit Selenium tests in Jenkins? Ant is used to execute tests, but I haven't found a way to annotate tests in JUnit and Java. In .NET and C# tests can be ...
0
votes
0answers
31 views
Apply JUnit @Rule / TestWatcher for all tests in a suite (without causing suite to ignore @ClassRule)
I'm looking for a way to write my @Rule / TestWatcher in one place only so it will apply to all my tests, till now the only way I found to work is to place it inside another class and extending it in ...
1
vote
1answer
57 views
Groovy: Cannot cast object 'true' with class 'java.lang.Boolean' to class 'java.io.File'
I don't understand why I am getting the following error. Any thoughts?
I am getting error:
Cannot cast object 'true' with class 'java.lang.Boolean' to class 'java.io.File'
This is the code ...
0
votes
0answers
26 views
Automate test cases of spring based command prompt application
I have a small spring based application which works based on the user input in command prompt. I am planning to automate some tests in the application.
Is junit fine or is there any other solution ...
1
vote
1answer
38 views
Why does Spring's <jdbc:embedded-database> throw a SQLSyntaxErrorException?
I'm learning Spring and now I'm trying out Spring's <jdbc:embedded-database> tag in the spring-jdbc namespace. I always run into the same error: a "java.sql.SQLSyntaxErrorException: user lacks ...
0
votes
1answer
32 views
Hibernate + JUnit Multithreaded Integrated Test
I used Hibernate together with Spring in JUnit to do an integration. I am use multiple reads and writes to test my codes if they handled the concurrency correctly. The thing with Hibernate is I can't ...
0
votes
2answers
25 views
Error while running through command line in springs
I have a test class that uses @Autowired annotation and @ContextConfiguration and @Category annotations.
The test tuns fine when its run through eclipse.
But when i try running it through Command ...
0
votes
1answer
35 views
JavaScript button can only be clicked once with selenium Webdriver
I am trying to use Selenium with JUnit and I am having trouble completing my tests because it seems like my button execution is only occurring once. here's some of the code:
JQueryUITab navTab = ...
-1
votes
0answers
15 views
Android test classes started going very slow
I have been writing an android app and tests to go along with it. When I first wrote some tests they were performing very quickly ~ 0.1s per test, as expected.
I then wanted to add my test code to my ...
0
votes
0answers
19 views
Bamboo: Can't get JUnit Parser working
I am running Bamboo OnDemand building a C project. CUnit outputs an XML file that I convert to JUnit using:
https://bitbucket.org/mcdeck/cunit-to-junit
It seems to work well but the file generated ...
0
votes
1answer
16 views
Visualizing old JUnit XML files with Jenkins
I know how to run tests via a Jenkins job and how to output custom XML results in JUnit specification which are then loaded/visualized by a post-build step to get this nice fancy trend graph.
Now I ...
0
votes
1answer
18 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 ...



