Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6034101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:34:50+00:00 2026-05-23T05:34:50+00:00

I’m not sure what I’m doing wrong here. I had this error in my

  • 0

I’m not sure what I’m doing wrong here. I had this error in my code, so I wrote a simple example to try to identify where the error lies.

I have a ClassA, that depends on two services ServiceA and ServiceB, I’m trying to test ClassA, and mocking ServiceA and ServiceB.

  /**
 * Last edited by: $Author: cg $
 * on: $Date: 17 Jun 2011 11:36:25 $
 * Filename: $RCSfile: ClassA.java,v $
 * Revision: $Revision:   $
 */
package easy;

import java.util.HashMap;


/** 
 * 
 * @version $Revision: $, $Date: 17 Jun 2011 11:36:25 $ 
 */
public class ClassA {
    private ServiceA serviceA;
    private ServiceB serviceB;
    public ClassA(ServiceA a, ServiceB b) {
        this.serviceA = a;
        this.serviceB = b;        
    }
    public String process(String p) {
        HashMap<String,String> a = serviceA.getServiceA(p);
        String ret = serviceB.getServiceB(a);
        return ret;
    }
}


interface ServiceA{
    HashMap<String,String>getServiceA(String s);
}

interface ServiceB{
    String getServiceB(HashMap<String,String> p);
}

My testing is the following:

/**
 * Last edited by: $Author: cg $
 * on: $Date: 17 Jun 2011 11:43:05 $
 * Filename: $RCSfile: ClassATest.java,v $
 * Revision: $Revision:   $
 */
package easy;

import static org.easymock.EasyMock.eq;
import static org.easymock.EasyMock.expect;

import java.util.HashMap;

import junit.framework.Assert;

import org.easymock.EasyMock;
import org.easymock.IMocksControl;
import org.junit.Test;
/**
 * 
 * @version $Revision: $, $Date: 17 Jun 2011 11:43:05 $
 */
public class ClassATest {

    @Test
    public void testProcess() {
        IMocksControl mockery = EasyMock.createControl();
        mockery.resetToStrict();
        mockery.checkOrder(true);

        ServiceA serviceA = EasyMock.createMock("ServiceA",ServiceA.class);
        ServiceB serviceB = EasyMock.createMock("ServiceB",ServiceB.class);

        ClassA a = new ClassA(serviceA, serviceB);

        String myParam = "My Test";

        HashMap<String,String> retFromServiceA = new HashMap<String,String>();
        retFromServiceA.put("my", "name");
        expect(serviceA.getServiceA(eq(myParam))).andReturn(retFromServiceA);
        expect(serviceB.getServiceB(retFromServiceA)).andReturn(myParam);

        mockery.replay();
        String actual = a.process(myParam);
        mockery.verify();

        Assert.assertEquals(myParam, actual);
    }
}

the result is failing because the actual return is null.

I tried to debug into the code, and I realize that although in my expectations I say I expect ServiceA.getServiceA to return retFromServiceA, it’s not. it’s returning null.

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T05:34:51+00:00Added an answer on May 23, 2026 at 5:34 am

    ServiceA and ServiceB were created without using the mockery control, so you should use:

    EasyMock.replay(serviceA, serviceB);
    

    prior to executing the process method

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have just tried to save a simple *.rtf file with some websites and
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
For some reason, after submitting a string like this Jack’s Spindle from a text
I'm looking for suggestions for debugging... If you view this site in Firefox or
I'm making a simple page using Google Maps API 3. My first. One marker
I have some data like this: 1 2 3 4 5 9 2 6
I have a JSP page retrieving data and when single or double quotes are
I want use html5's new tag to play a wav file (currently only supported

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.