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

  • SEARCH
  • Home
  • 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 8946185
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:26:42+00:00 2026-06-15T12:26:42+00:00

I have a dao.create() call that I want to mock when testing a method.

  • 0

I have a dao.create() call that I want to mock when testing a method.
But I am missing something as I’m still getting NPE. What is wrong here?

class MyService {
    @Inject
    private Dao dao;

    public void myMethod() {
        //..
        dao.create(object);
        //
    }
}

How can I mock out the dao.create() call?

@RunWith(PowerMockRunner.class)
@PrepareForTest(DAO.class)
public void MyServiceTest {

    @Test
    public void testMyMethod() {
        PowerMockito.mock(DAO.class);

        MyService service = new MyService();
        service.myMethod(); //NPE for dao.create()
    }
}
  • 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-06-15T12:26:44+00:00Added an answer on June 15, 2026 at 12:26 pm

    You are not injecting the DAO. With mockito you can change your test class to use @InjectMocks and use mockito runner.

    @RunWith(MockitoJUnitRunner.class)
    public void MyServiceTest {
        @Mock
        private Dao dao;
        @InjectMocks
        private MyService myService;
        ...
    }
    

    You can read more about InjectMocks at Inject Mocks API

    Simpler way is changing your injection to injection by constructor. For example, you would change MyService to

    class MyService {
        ...
        private final Dao dao;
    
        @Inject
        public MyService(Dao dao) {
            this.dao = dao;
        } 
        ...
    }
    

    then your test you could simple pass the mocked DAO in setup.

    ...
    @Mock
    private Dao dao;
    
    @Before
    public void setUp() {
        this.dao = mock(Dao.class);
        this.service = new MyService(dao);
    }
    ...
    

    now you can use verify to check if create was called, like:

    ...
       verify(dao).create(argThat(isExpectedObjectBeingCreated(object)));
    }
    
    private Matcher<?> isExpectedObjectBeingCreated(Object object) { ... }
    

    Using injection by constructor will let your dependencies clearer to other developers and it will help when creating tests 🙂

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

Sidebar

Related Questions

I have a number of DAO classes that extend SqlMapClientDaoSupport, and call getSqlMapClientTemplate() to
I have a service method that calls a DAO which then returns an object
I have DAO's for each table, that all implement an interface. Now I want
I have a web application that create an access database. When I want to
I have a dao jar file that contains all the domain objects and service
I have a JSP struts application that uses Spring to integrate with the services/dao/database.
I have a SQL Server Stored Procedure that looks like this: CREATE PROCEDURE [dbo].[my_stored_procedure]
I am new to JSF 2.0 and Primefaces but have decided to create my
I have to create a web app that connects to a MySQL DB. I
I have a test console app that is executing sql scripts to create a

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.