Clover Coverage Report - EasyMock 2.4
Coverage timestamp: mer. juil. 2 2008 02:17:38 CEST
0   88   0   -
0   43   -   0
0     -  
1    
 
 
  IMethods       Line # 9 0 0 - -1.0
 
No Tests
 
1    /*
2    * Copyright (c) 2001-2008 OFFIS, Tammo Freese.
3    * This program is made available under the terms of the MIT License.
4    */
5    package org.easymock.tests;
6   
7    import java.io.IOException;
8   
 
9    public interface IMethods {
10   
11    boolean booleanReturningMethod(int index);
12   
13    byte byteReturningMethod(int index);
14   
15    short shortReturningMethod(int index);
16   
17    char charReturningMethod(int index);
18   
19    int intReturningMethod(int index);
20   
21    long longReturningMethod(int index);
22   
23    float floatReturningMethod(int index);
24   
25    double doubleReturningMethod(int index);
26   
27    Object objectReturningMethod(int index);
28   
29    String oneArg(boolean value);
30   
31    String oneArg(byte value);
32   
33    String oneArg(short value);
34   
35    String oneArg(char value);
36   
37    String oneArg(int value);
38   
39    String oneArg(long value);
40   
41    String oneArg(float value);
42   
43    String oneArg(double value);
44   
45    String oneArg(Object value);
46   
47    String oneArg(String value);
48   
49    public String throwsNothing(boolean value);
50   
51    public String throwsIOException(int count) throws IOException;
52   
53    public String throwsError(int count) throws Error;
54   
55    void simpleMethod();
56   
57    void simpleMethodWithArgument(String argument);
58   
59    Object threeArgumentMethod(int valueOne, Object valueTwo, String valueThree);
60   
61    void twoArgumentMethod(int one, int two);
62   
63    void arrayMethod(String[] strings);
64   
65    String oneArray(boolean[] array);
66   
67    String oneArray(byte[] array);
68   
69    String oneArray(char[] array);
70   
71    String oneArray(double[] array);
72   
73    String oneArray(float[] array);
74   
75    String oneArray(int[] array);
76   
77    String oneArray(long[] array);
78   
79    String oneArray(short[] array);
80   
81    String oneArray(Object[] array);
82   
83    String oneArray(String[] array);
84   
85    void varargsString(int i, String... string);
86   
87    void varargsObject(int i, Object... object);
88    }