Tagged Questions

JMockit allows developers to write unit/integration tests without the testability issues typically found with other mocking APIs. Tests can easily be written that will mock final classes, static methods, constructors, and so on. There are no limitations.

learn more… | top users | synonyms

11
votes
7answers
3k views

Comparison between Mockito vs JMockit - why is Mockito voted better than JMockit?

Hello I'm investigating which mocking framework to use for my project and have narrowed it down to JMockit and Mockito. I notice that Mockito was voted "the best mock framework for Java" on ...
7
votes
2answers
1k views

Does JMockit have any drawbacks at all?

This comparison shows, that JMockit has several advantages over other frameworks. Are there also any advantages that one of the others (JMock, EasyMock, Mockito, Unitils, PowerMock + ...
6
votes
2answers
2k views

Mocking non-public static methods in abstract classes with JMockit?

I have the following class: public abstract class AbstractParent { static String method() { return "OriginalOutput"; } } I want to mock this method. I decide to use JMockit. So I ...
5
votes
1answer
45 views

Equivalent of times() in JMockIt?

I dont think minInvocation or maxInvocation is equivalent to times() in Mockito. Is there? Please see this questions: Major difference between: Mockito and JMockIt which has not been answered yet by ...
4
votes
4answers
83 views

Counting method invocations in Unit tests

What is the best way to count method invocations in a Unit Test. Do any of the testing frameworks allow that?
4
votes
2answers
1k views

Is there a way to use a custom JUnit Test Runner when running tests in Eclipse?

I want to use JMockit's incremental test runner instead of the standard JUnit test runners from within Eclipse. Is there a way to do this? Edit Received the following answer to my email to the ...
3
votes
3answers
49 views

JMockit & multiple local methods

Let's say I have class MyClass with methods x(), y() and z(). Let's say x() calls y(), and y() calls z(). So everytime I test x() both y() and z() are called. In case of mocking the dependencies of ...
3
votes
2answers
124 views

How to prevent super class from being mocked by jmockit?

Given a class hierarchy that looks like this: public class Vehicle { private String name; public Vehicle(String name) { this.name = name; } public String getName() { ...
3
votes
2answers
900 views

Setting javaagent in ant

I am trying to run JUnit tests from an Ant script. The tests use the JMockit mocking framework, which for Java 5 requires specifying it as a javaagent to run correctly. Here is the script I am ...
3
votes
3answers
2k views

Using JMockit to mock autowired interface implementations

We are writing JUnit tests for a class that uses Spring autowiring to inject a dependency which is some instance of an interface. Since the class under test never explicitly instantiates the ...
2
votes
1answer
59 views

JMockit and pass-by-reference. One of us must be wrong (and it's probably me!)

I would be very grateful if someone could help me break through this issue I've been battling with recently. I am trying to mock a method that takes a double and a Calendar, and returns an integer ...
2
votes
1answer
211 views

Debug Partial Mock in JMockit

Using JMockit 0.999.4 and JDK6, is it possible to debug into a partially mocked class? Consider the following test: @Test public void testClass() { SampleClass cls = new SampleClass(); ...
2
votes
2answers
2k views

JMockit - initialization problem

When I use the following test I get a WARNING: WARNING: JMockit was initialized on demand, which may cause certain tests to fail; please check the documentation for better ways to get it ...
2
votes
1answer
420 views

JMockit Hibernate Emulation

I was wondering if anyone tried using JMockit Hibernate Emulation? Jmockit documentation says that when Hibernate Emulation tests are run, they won't use the O/R mapping information. So, this means ...
2
votes
3answers
757 views

ClassFormatError using JMockit with EMMA

I am trying to use EMMA to measure coverage of some JUnit tests that use JMockit. But when I try to run the JMockit tests after instrumenting with EMMA, about a quarter of the tests fail with the ...
2
votes
1answer
861 views

Debugger won't work with JMockit

Hopefully an easy question here for someone..... I'm using RAD 7.5.2, and am writing Junit tests. I was writing them just fine with JUnit 3, and then I wanted to mock up some function calls. So I ...
2
votes
1answer
703 views

Mocking Toolkit using JMockit Expectations

I am trying to mock java.awt.Toolkit.beep() using JMockit Expectations. I have the following code in my test case: new Expectations() { Toolkit mock; { mock.beep(); } ...
2
votes
2answers
841 views

NoClassDefFoundError when trying to use JMockit Coverage

I am trying to use JMockit's code coverage abilities. Using the JVM parameter -javaagent:jmockit.jar=coverage=.*MyClass.java:html:: I am able to run my tests (jmockit.jar and coverage.jar are on ...
2
votes
3answers
2k views

Using jmockit expectations with matchers and primitive types

I'm using jmockit for unit testing (with TestNG), and I'm having trouble using the Expectations class to mock out a method that takes a primitive type (boolean) as a parameter, using a matcher. ...
1
vote
1answer
36 views

Same value returned by 2 object with same Mocked Interfaces using JMockit

I made a simple Test Class to simplify my actual problem : public class BidonTest { @Mocked IBidon ibidon; @Mocked IBidon ibidon2; @Mocked Bidon bidon; @Mocked Bidon bidon2; @Test public void ...
1
vote
2answers
123 views

Jmockit NullPointerException with Junit

I'm trying to run a test that written by another programmer with JUnit in eclipse-indigo, and he is sure it works but when I try Jmockit there is a failure and I can't find a solution, yet. I try to ...
1
vote
1answer
32 views

In JMockit, how to specify times for a series of calls?

I have something like: new Expectations() {{ mock0.f(); mock1.f(); mock0.f(); mock1.f(); mock0.f(); mock1.f(); }}; Is there a way I can use the 'times =' specification? ...
1
vote
1answer
79 views

jMockit: How to expect constructor calls to Mocked objects?

I am unit-testing a method performing some serialization operations. I intend to mock the serialization logic. The code is as below: ObjectInputStream ois = new ObjectInputStream(new ...
1
vote
2answers
218 views

Major difference between: Mockito and JMockIt

This is what I found from my initial attempts to use JMockIt. I must admit that I found the JMockIt documentation very terse for what it provides and hence I might have missed something. Nonetheless, ...
1
vote
2answers
105 views

How to mock out Thread.sleep() with JMockit?

I have the following code: class Sleeper { public void sleep(long duration) { try { Thread.sleep(duration); } catch (InterruptedException e) { ...
1
vote
2answers
54 views

Simulating side effects of a mocked method

I have a method in a class that causes side effects to the method's parameter: public void SideEffectsClass { public void doSomethingWithSideEffects(List<Object> list) { // do ...
1
vote
0answers
279 views

Verifying partially ordered method invocations in JMockit

I'm trying to write a unit test (using JMockit) that verifies that methods are called according to a partial order. The specific use case is ensuring that certain operations are called inside a ...
1
vote
1answer
149 views

How to Replace The Call to A Private Method of The Class Being Tested

Well, I am right now testing legacy code. And, I am somewhere near to pass this test, but its stuck at the line having comments on it. Here is the snippet new NonStrictExpectations(){ ...
1
vote
5answers
210 views

Mocking the current time with JRE 1.4

I'm currently restricted to only using JRE 1.4 (java runtime environment) and i have a class which has some current time calculations. I am trying to unit test the class but it seems quite hard as all ...
1
vote
1answer
108 views

Removing previously defined expectations in JMockit

I have an object that I'm mocking with a JMockit NonStrictExcpection() in the @Before/setUp() method of my test class so that it returns the value expected for normal execution of my class under test. ...
1
vote
1answer
2k views

Mock a static method multiple times using JMockit within a JUnit test

I have a class with static methods that I'm currently mocking with JMockit. Say it looks something like: public class Foo { public static FooValue getValue(Object something) { ... } ...
1
vote
2answers
914 views

How to mock HTTPSession/FlexSession with TestNG and some Mocking Framework

I'm developing a web application running on Tomcat 6, with Flex as Frontend. I'm testing my backend with TestNG. Currently, I'm trying to test the following method in my Java-Backend: public class ...
1
vote
1answer
205 views

Jmockit expectations error

I have unit test case where I am using JMockit with expectations. Now when I run the test case alone, the test case passes. But when I run all test cases collectively, I get the: expected exactly 1 ...
1
vote
4answers
1k views

How to JMockIt System.getenv(String)?

What I have right now I have a 3rd party singleton instance that my class under test relies on and that singleton is using System.getenv(String) in its constructor. Is it possible to mock this call? ...
1
vote
5answers
892 views

Is there a neater way of testing calls to mocked methods for each item in a list

This is an example of a pattern I've encountered a lot recently. I have a method to be tested that takes a List and may invoke some other method(s) for each item in the list. To test this I define an ...
1
vote
3answers
2k views

How do I mock a method with generic objects in JMockit?

This question is self explanatory if you know how to use JMockit: How do I mock a method that has generics on it? I want to mock this method: public T save(T entity) but it always throws an exception ...
1
vote
2answers
808 views

mocking superclass protected variable using jmockit

I couldnt able to mock the protected varibale defined in the superclass.i could able to mock the protected method in superclass but couldnt to mock the protected variable in to the subclass ,wherein ...
1
vote
2answers
447 views

Getting ClassFormatError with EMMA?

I'm trying to generate code coverage reports with EMMA using tests of which some use JMockit as a mocking framework. For the most part, it works, but a few of my tests crash with a ClassFormatError, ...
1
vote
2answers
858 views

How do I unit test a Java method which uses ProcessBuilder and Process?

I have a Java method which starts up a Process with ProcessBuilder, and pipes its output into a byte array, and then returns its byte array when the process is finished. Pseudo-code: ProcessBuilder ...
1
vote
3answers
2k views

How to mock the InitialContext class with jmockit?

I'm using jmockit with my tests and with one class I wish to test, uses InitialContext directly. So I have the following: public class MyClass { public void myMethod() { InitialContext ic = new ...
0
votes
1answer
41 views

Running Eclipse plugin-tests with JMockit and JUnit 3

I try to run plugin-tests (not regular unit-tests) in Eclispe Helios with JMockit. Unfortunately the Mocking does not work. I get WARNING: JMockit was initialized on demand, which may cause ...
0
votes
0answers
28 views

How do I create a mocked and a non-mocked instance of a single class within one test method?

How do I create a mocked and a non-mocked instance of a single class within one test method? An "Entry" can be expired, if its "lastContact" attribute is older than 5 minutes. I use a Mock to create ...
0
votes
0answers
36 views

Error when using JMockit 0.999.11 with Maven 2.2 but able to work with junit and testng Options

I am the getting the below error when I try to run my maven test or maven surefire test of a jmockit. But when i run through junit or testng it works fine. java.lang.RuntimeException: ...
0
votes
0answers
29 views

Is there a way to mock jdbcTemplate of spring using JMockit?

I'm writing unit test cases using JMockit for DAOs in my application for which I have to mock the jdbcTemplate of spring so that there will not be any call to the database. I have seen other ...
0
votes
2answers
93 views

Using JMockit to return actual instance from mocked constructor

I've looked at the following question and it is not the same as mine: jMockit: How to expect constructor calls to Mocked objects? This question is similar but the answer is not helpful to me: How ...
0
votes
1answer
66 views

Jmockit TestNG/JUnit NullPointerException with Seam

I had been using jmock with seam all these days, but its not sufficient to mock final/static/enums. So I tried working with JMockit. However everytime I run, I get NPE. Can't even debug, below is ...
0
votes
2answers
76 views

jUnit:NPE on private member initialization

Have jUnit test, which initializes my bean: ShowProducts sp = new ShowProducts(); got NullPointerException on following line in ShowProducts.java: private Locale locale = ...
0
votes
2answers
94 views

ClassLoader throws NullPointerException when trying to partial mock a class with JMockit

Using Eclipse 3.6.1 Java 1.6.0_26 JMockit 0.999.10 UPDATE: I was able to create a SSCCE, which I am posting below: UPDATE2: Added DaemonHelper. Additionally, if I remove DaemonHelper from the ...
0
votes
1answer
61 views

TestNG Test Case failing with JMockit “Invalid context for the recording of expectations”

The following TestNG (6.3) test case generates the error "Invalid context for the recording of expectations" @Listeners({ Initializer.class }) public final class ClassUnderTestTest { private ...
0
votes
1answer
51 views

How to accept any method call in JMockit?

I have something like the following code: public void f() { logger.info("some string"); } How would I specify in JMockit that any call to logger is allowed? For example, if someone changed the ...

1 2