01: package net.sf.mockcreator;
02:
03: public abstract class VoidVoidClass {
04: public void voidMethod() {
05: }
06:
07: protected void voidMethod2() {
08: }
09:
10: private void voidMethod3() {
11: }
12:
13: // to check static method is not injects it's signatures into mock
14: public static void anotherMethod(boolean foobar) {
15: }
16:
17: public void anotherMethod(int foobar) {
18: }
19:
20: public abstract void abstractMethod();
21:
22: public int nonVoidMethod() {
23: return 0;
24: }
25: }
|