1 /* Copyright (c) 2000-2004 jMock.org2 */3 package atest.jmock;4 5 /**6 * Used as namespace for example types used in integration tests7 */8 public interface Types9 {10 public interface WithTwoMethods11 {12 int twoArgsReturnsInt( String arg1, Object arg2 );13 14 void noArgsReturnsNothing();15 }16 }17