EMMA Coverage Report (generated Thu Sep 14 09:32:01 MDT 2006)
[all classes][biz.xsoftware.mock.client.test]

COVERAGE SUMMARY FOR SOURCE FILE [MockFakeInterface.java]

nameclass, %method, %block, %line, %
MockFakeInterface.java0%   (0/1)0%   (0/3)0%   (0/28)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class MockFakeInterface0%   (0/1)0%   (0/3)0%   (0/28)0%   (0/4)
MockFakeInterface (): void 0%   (0/1)0%   (0/3)0%   (0/1)
getValue (): int 0%   (0/1)0%   (0/7)0%   (0/1)
someMethod (String, int): void 0%   (0/1)0%   (0/18)0%   (0/2)

1/**
2 *  Copyright (C) 2006 Carrier Access, Corp.
3 */
4package biz.xsoftware.mock.client.test;
5 
6import biz.xsoftware.mock.client.JsMockSuperclass;
7 
8/**
9 */
10public class MockFakeInterface extends JsMockSuperclass implements FakeInterface
11{
12    public static final String SOME_METHOD = "someMethod";
13    public static final String GET_VALUE = "getValue";
14    
15    /**
16     * @see biz.xsoftware.mock.client.test.FakeInterface#someMethod(java.lang.String, int)
17     */
18    public void someMethod(String s, int i)
19    {
20        methodCalled(SOME_METHOD, new Object[] {s, new Integer(i)});
21    }
22 
23 
24    /**
25     * @see biz.xsoftware.mock.client.test.FakeInterface#getValue()
26     */
27    public int getValue()
28    {
29        return ((Integer)methodCalled(GET_VALUE, null)).intValue();
30    }
31 
32}

[all classes][biz.xsoftware.mock.client.test]
EMMA 2.0.4217 (C) Vladimir Roubtsov