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 9281277
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T18:04:41+00:00 2026-06-18T18:04:41+00:00

When using MockFor , how can I get it to verify that a method

  • 0

When using MockFor, how can I get it to verify that a method was invoked at least n times? I’ve tried ignoring the method call after setting up a demand, like this:

import groovy.mock.interceptor.MockFor;
import org.junit.Test

class FilterTest {

    interface Filter {
        boolean isEnabled()
    }

    @Test
    public void test() {
        MockFor mockContext = new MockFor(Filter)

        // Expect at least one call
        mockContext.demand.isEnabled {true}
        mockContext.ignore.isEnabled {false}

        // Obtaining a usuable mock instance
        def filter = mockContext.proxyInstance()

        // Fake calling the method
        filter.isEnabled()
        filter.isEnabled()

        // Verify invoked at least once?        
        mockContext.verify(filter)
    }
}

However, I get an assertion failure:

junit.framework.AssertionFailedError: verify[0]: expected 1..1 call(s) to 
'isEnabled' but was called 0 time(s).
  • 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-18T18:04:43+00:00Added an answer on June 18, 2026 at 6:04 pm

    You can’t combine “demand” and “ignore” in that way, since the “ignore” statement overrides the “demand” statement.

    Instead, you can specify the valid range like this:

    mockContext.demand.isEnabled(1..10) {true}
    

    which will accept 1 to 10 number of invokations (but not zero or eleven or more).

    I’m not aware of any way to specify an open ended upper bound in ranges, though, which you imply that you need when you say “at least n times”.

    In most practical situations, I believe you can get away with specifying a sufficiently large upper bound (like 100).

    EDIT: Removed the “hack” suggestion (it didn’t work as I expected)

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

Sidebar

Related Questions

Using linq, How can I sort an array and after that return all numbers
Using Location.getBearing(); I seem to get randomly changing bearings. Aka, I can turn the
Right, so when I set up my mock using the testing plugin's mockFor method,
using this http://bl.ocks.org/950642 we can see how to add images to nodes, the question
Using the Redis info command, I am able to get all the stats of
Using Tsql, how can I find out when MS SQL server was installed?
Using jQuery, how do I get the value from a textbox and then load
Using the RichTextArea in GWT, It looks like I can only change the font
How do I easily mock out a static method in Java? I'm using Spring
Using C# How can I show a document in richtextbox without scrollbars, But I

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.