vote up 3 vote down star
2

I am new to unit testing and mocking. I am trying to unit test an abstract domain class in Grails. How should I mock an implementation so I can unit test the constraints of the domain class? Is there a way to use the mock libraries that come with groovy or grails? Should I just implement a class that simply extends the abstract class?

flag

60% accept rate

2 Answers

vote up 4 vote down check

One cool thing about groovy (among many) is that you can use a map of method names with closures as values to mock out a class. This includes abstract classes.

abstract class Foo {
    def foo() {
       return bar() + 1
    }    

    abstract int bar()
}

def fooInst = [bar: {-> return 1 }] as Foo
assert 2 == fooInst.foo()
link|flag
Groovy ROCKS!!! I can't believe it is that easy. Thank you very much! – Matthew Sowders Jul 11 at 5:24
What if the abstract class does not have the default constructor? – Dan Oct 5 at 21:28
vote up 0 vote down

Yes, what if there is no default constructor? How easy is this?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.