|
Groovy example source code file (Collaborator.groovy)
The Groovy Collaborator.groovy source code
package groovy.mock.interceptor
/**
Helper class for testing.
@author Dierk Koenig
*/
class Collaborator {
String foo = "bar"
String bar = "foo"
def one() {
throw new RuntimeException('Never reach here. Should have been mocked.')
}
def one(int arg) {
throw new RuntimeException('Never reach here. Should have been mocked.')
}
def one(int one, int two) {
throw new RuntimeException('Never reach here. Should have been mocked.')
}
def two() {
throw new RuntimeException('Never reach here. Should have been mocked.')
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Collaborator.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.