Easymock is a mocking framework for Java.
0
votes
0answers
20 views
Using easymock in multithreading
I want to test that some method would be recalled on failing. Calling executed in separate thread. So I write code like this
final Foo mock = createStrictMock(Foo.class);
mock.bar();
...
0
votes
1answer
13 views
jUnit Unexpected method call DAO Easymock check User
I have a problem with testing check user method from DAO.
Here is the code:
private UserService service;
private UserDao mockDAO;
@Before
public void setUp(){
service=new UserService();
...
0
votes
0answers
12 views
Mock chained methods using EasyMock
How do you mock a chained method call in EasyMock? I have a chained method call:
srvc.getServiceManager().getDetails(Integer.parseInt(msgId));
I've tried to do
...
0
votes
1answer
33 views
jUnit Unexpected method call DAO Easymock
I am newbie with mock testing.
I want to test my DAO for users. Here is my code.
private UserService service;
private UserDAO mockDAO;
@Before
public void setUp(){
service=new UserService();
...
1
vote
1answer
34 views
How to mock the WebResource Rest call
How to mock the following lines of code
WebResource jobBuilder = restClient.resource(jobBuilderUrl);
String jobXml = jobBuilder
.accept(MediaType.APPLICATION_XML)
...
0
votes
0answers
41 views
EasyMock calls hashcode when creating constructor and throwing a NullPointerException
I do not understand why EasyMock automatically calls hashcode() before assigning values for properties. When I'm creating the constructor in test class, instead of setting the value for properties, it ...
0
votes
2answers
41 views
EasyMock: Method with a callback argument
I have a situation like this:
class A {
void methodA(Callback cb) {
...
cb.onResult(result);
}
}
class B {
void methodB(A a) {
a.methodA(new Callback() {
void onResult(Result ...
0
votes
1answer
65 views
How to unit test the rest call using easy mock
How to unit test the below method with the EasyMock. I tried to mock WebResource but it is returning me a NullPointerException.
public void connect()
{
Client client = setUpClient();
...
-1
votes
1answer
22 views
PowerMock and EasyMock
Is there a good reference material or links where one can find good resource for jUnit, PowerMock and EasyMock.
Though good amount of information is available on the net , but is there a single point ...
0
votes
1answer
34 views
EasyMock expectations within loop
Is it possible to set different expectations for a mock which is being invoked in a loop?
Considering the use case,
while(condition){
List list = Database call //Call to be mocked
....
...
0
votes
1answer
18 views
EasyMock expected void
Just trying the EasyMock for the first time.
I seem to get it going but I am immediately halted with the fact that the mocked class runs a method "returning" void (EntityManager.remove(abc)).
I am ...
3
votes
2answers
96 views
Mocking class in Spring 3.2 causes “No qualifying bean of type X” found
Im trying to mock the HttpClient implementation using the Spring 3.1 profiles and by using EasyMock, but the Spring container complains it cant find a bean with right type. Have I configured the mock ...
1
vote
1answer
52 views
PowerMockRunner causes ExceptionInInitializerError when running trivial test
I cannot run a very simple test class using the Powermock test runnner. It causes an ExceptionInInitializerError. It looks to be a problem with the dependencies on the classpath, however, I have ...
0
votes
2answers
45 views
Is there any tool that automates stubbing mock object responses? (using jmock, mockito or easy mock)
Question: Is there any tool that automates stubbing or mock object responses (using jmock, mockito or easy mock)?
I have to write unit tests against a method that has dependencies on Amazon AWS ...
0
votes
1answer
35 views
How to expect the creation of an array with PowerMock
I'm currently trying to test a method that creates an array of objects, and then executes a method on a object with the array of objects as the parameter. Everytime I try to do it, I keep getting a ...
2
votes
2answers
76 views
Is it possible to mock a single method in an already existing object?
For an integration test, I need to mock a specific method in a java service client without destroying the rest of the information in it. It has no self-constructor, so a solution like this is out of ...
0
votes
0answers
24 views
Easymock: Issue Mocking void DAO method - Unexpected method call
Found a workaround. See solution at the bottom
Ok I have been in EasyMock jail all day and I need some help getting out.
I have a void save() method I am mocking out.
public void save(PurchaseOrder ...
0
votes
1answer
17 views
PowerMock / EasyMock for JMX ManagementFactory
I need to mock following code:
final MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
mbs.registerMBean(testMBean, new ObjectName("testObjectName");
I am usign PowerMock to mock ...
0
votes
1answer
67 views
EasyMock mocked method call is returning null when called for the second time after resetting mock object
This is my first post in Stackoverflow, so far I have been the active reader of this forum and I am posting my first question here.
This is regarding the EasyMock usage, I am a new user of EasyMock ...
0
votes
1answer
40 views
Assert method call with EasyMock
I am writing a unit test around void function.
Inside that I call another function.
I want to test that this function should be called only once.
If it is getting called 0 or 2 times, it should fail.
...
0
votes
2answers
59 views
EasyMock Void Methods mismatch of object hashcode
I have create an mock object for HttpSession like below.
HttpSession mocks.createMock(HttpSession.class);
Now i am testing some method the method is
public String validateProduct(String ...
0
votes
0answers
16 views
EasyMock : Is Mocked object visible to the all the tests?
I have created a mocked object in a particular junit test case with the expectation that it should be called only once; but it seems it is visible across all the tests run together, failing with the ...
1
vote
4answers
130 views
How to mock local variables in java? [duplicate]
In this situation?
class A {
public void f() {
B b = new B();
C c = new C();
// use b and c, and how to modify their behaviour?
}
}
How can I fullfill my idea with PowerMock and ...
0
votes
1answer
89 views
Mock object for Hibernate's classes
Is it possible to make Mock object for Hiberate's native classes(I use easymock)? For example for Query? If yes, how should I do it?
Here is part of test code:
@Mock
private SessionFactory ...
1
vote
1answer
66 views
Unit testing a java class extending Stored Procedure with EasyMock
When I try to unit test the following class extending StoredProcedure I am getting an NullPointerException at the line: return (Map) execute(csc, new CallableStatementCallback() in JDBCTemplate class. ...
0
votes
1answer
24 views
createMock and non-abstract methods in an abstract class
I have an abstract class that I'd like to mock out for testing purposes:
public abstract class Foo {
public abstract void bar();
public void baz() {
System.out.print("Hi from baz!");
...
2
votes
1answer
51 views
Mock an abstract base class using EasyMock
I have an abstract base class (parent) and a derived class (child)
public class child extend parent{
public void child(...) {
super(..)
}
}
public abstract class parent{
.
.
...
0
votes
1answer
85 views
java.lang.NoSuchMethodError powermock
Guys
Question:
How to mock a static final class which has defined some other static final class?
Problem Description:
When I want to write some unit test case for a final class ...
0
votes
1answer
34 views
EasyMock servlet reflection
That is a piece of servlet code. I have no idea how to cover it by mock. I created mock objecs like ServletConfig, LoginServiceFactory and LoginService but I don't know how to create mock for ...
1
vote
2answers
135 views
Junit and EasyMock Servlet testing
I have a problem with testing Servlet. Bouncer is a Servlet with simple method doPost and init overrited by me. But when i run that code i get exception
@Before
public void Before() throws ...
1
vote
0answers
344 views
“java.lang.IllegalStateException: no last call on a mock available” only from ant, works fine in eclipse
I'm using EasyMock3.1/testNg-5.7/Powermock-easymock-1.5-full.
The code is very simple, just mock a public static method.
import static org.powermock.api.easymock.PowerMock.createMock;
import static ...
0
votes
0answers
49 views
PowerMock EasyMock TooManyConstructorsFoundException
Class to be tested:
class ToBeTested {
public method() {
Set<Bar> bars = new HashSet<Bar>();
Foo foo = new Foo(bars, 1);
// do some other stuff
}
}
// ...
1
vote
0answers
32 views
HTTPTransportError - Unexpected WS call using the mocked proxy object
I'm stuck trying to run a unit test that makes a web service request. I'm mocking the proxy object of the jax-ws request in my JUnit test using EasyMock.
I have defined the bean using DI in my ...
1
vote
0answers
76 views
Mocking a Static Method without replayAll() in PowerMock
Does anyone know of a way to do a mock of a static class without calling replayAll()? I've seen many examples where people mock the Math.random() and use the replayAll(). To me it seems like ...
0
votes
0answers
42 views
Testing JAX-WS client with EasyMock
I have built a java WS client using jaxws-maven-plugin 2.2 that comunicates with a server side.
Now, I am implementing unit tests using EasyMock for testing client side behaviour but I am newbie.
...
0
votes
1answer
83 views
EasyMock calling two DAO methods- Unexpected method call UserAdminDAO.updateUser
In my unit test for DAO method, I am trying to test the update user method. But, I have to create an user and then update it. So my mock DAO is expecting the addUser call, but then when I am, calling ...
0
votes
1answer
68 views
To mock a method returning void
I am fairly new to writing mock classes.I am trying to write a test class for the below method and I am not able to proceed with mocking the method call "getSsnValue".
public void ...
0
votes
1answer
38 views
ignoring specific parameter of mocked object while comparing expected call and actual call
I have a class as follows:
public class MyClass{
Connector con;
public MyClass(Connector con){
this.con= con;
}
public void save(Xyz xyz){
//save 2 instances of xyz one with ...
0
votes
1answer
161 views
How to mock static method using junit and easymock [duplicate]
The problem is next: I need to test method methodTest() of private class.
The methodTest() call static method staticExternal() from external library.
How to replace the staticExternal() on a ...
0
votes
2answers
216 views
Correct use of expectLastCall().once() in EasyMock
I'm writing a junit test for a particular method. The method contains calls to other methods in a DAO class which I am mocking with EasyMock.
I want to assert that one of these DAO class methods is ...
1
vote
2answers
121 views
EasyMock Exception Handling
I am creating some junit test cases using EasyMock. So far it makes sense for classes I am expecting to return POJOs, but how should I handle dealing with a DAO object that itself could throw an ...
1
vote
1answer
102 views
unit testing functions with Apache Camel Exchange as parameter
I am doing java camel development and I want to unit test(junit4) a bunch of functions with Exchange being passed in as parameter.
For example :
public finalObject getProperty(final Exchange ...
4
votes
1answer
122 views
Putting stuff in Map<?,?> or converting Map<String,String> to Map<?,?>
I'm unhappily dealing with an interface someone defined with the following
public Map<?, ?> getMap(String key);
I'm trying to write unit tests that consume this interface.
...
0
votes
1answer
513 views
Powermock no last call on a mock available
Running the code from:
http://www.jayway.com/2009/05/17/mocking-static-methods-in-java-system-classes/
I get the following error. Anyone seen this? Thanks!
java.lang.IllegalStateException: no ...
0
votes
1answer
122 views
Mock enum instantiation using powermock
I have following code to test:
Public MyClass() {
public static final boolean myFunc(int param1, String param2, long param3) {
SomeInterface var1 = ...
0
votes
2answers
177 views
PowerMock: Is not an interface
I am just trying to get PowerMock/EasyMock to work. I am using PowerMock 1.5:
<dependency>
<groupId>org.powermock</groupId>
...
0
votes
1answer
47 views
EasyMock matcher failures
I have a strange problem with EasyMock
This is the call I'm making which throws an IllegalStateException : Matcher expected as expected
expect(this.mock.expectedOperation(gt(0l), ...
2
votes
1answer
86 views
How to initialize mocked object?
Lets say I have the following code:
Mocked object class
public class SomeClass {
private Foo someField;
public SomeClass {
someField = new Foo();
}
public Foo getSomeField { ...
0
votes
1answer
59 views
Does EasyMock do a object injection to JUnit code?
I'm new to both JUnit and for EasyMock. I need to inject few of the classes into my JUnit test.
private static TheManager theManager;
public static void setUpBeforeClass() throws Exception {
...
0
votes
1answer
179 views
Not able to mock static methods using Powermock (with EasyMock)
I want to mock a static method and also non-static methods of a class.
My source looks like:
public class XDSUtilityManager
{
private static XDSUtilityManager xdsUtilMgr = new ...




