1 package sample.basic;2 3 /**4 * Here is my MinimalThing.5 *6 * @mock:generate7 */8 public interface MinimalThing {9 10 /**11 * Do nothing special.12 */13 void minimalMethod();14 15 }16