1 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
2 package org.jmock.functional;
3
4 public interface MockTestActions {
5 void expectNoParams();
6
7 void expectOneParam();
8
9 void expectTwoParams();
10
11 void expectNotNoParams();
12
13 void callNoParams();
14
15 void callOneParam();
16
17 void callTwoParams();
18
19 void callIncorrectSecondParameter();
20
21 void verifyMock();
22 }
This page was automatically generated by Maven