01: package net.sf.mockcreator.expectable;
02:
03: /**
04: * Compares two Java Beans by iterating properties and comparing their values.
05: *
06: * TODO: implement
07: * TODO: usage
08: */
09: public class ExpectPOJO implements ExpectableParameter {
10:
11: public boolean isExpected(Object actualParameter) {
12: return false;
13: }
14:
15: private void todo() {
16: };
17: }
|