1 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
2 package org.jmock.stub;
3
4 import org.jmock.dynamic.ExpectationBuilder;
5
6 public interface StubBuilder {
7 ExpectationBuilder isVoid();
8
9 ExpectationBuilder returns(Object returnValue);
10
11 ExpectationBuilder willThrow(Throwable throwable);
12 }
13
This page was automatically generated by Maven