EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010)
[all classes][diskCacheV111.vehicles]

COVERAGE SUMMARY FOR SOURCE FILE [PoolMessage.java]

nameclass, %method, %block, %line, %
PoolMessage.java0%   (0/1)0%   (0/3)0%   (0/19)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PoolMessage0%   (0/1)0%   (0/3)0%   (0/19)0%   (0/5)
PoolMessage (String): void 0%   (0/1)0%   (0/6)0%   (0/3)
getPoolName (): String 0%   (0/1)0%   (0/3)0%   (0/1)
toString (): String 0%   (0/1)0%   (0/10)0%   (0/1)

1// $Id: PoolMessage.java,v 1.3 2005-02-21 14:39:14 patrick Exp $
2 
3package diskCacheV111.vehicles;
4 
5//Base class for messages to Pool
6 
7 
8public class PoolMessage extends Message {
9    
10    private String _poolName;
11 
12    private static final long serialVersionUID = 2092239799703859605L;
13    
14    public PoolMessage(String poolName){
15        _poolName = poolName;
16    }
17    
18    public String getPoolName(){
19        return _poolName;
20    }
21    public String toString(){
22        return "Pool="+_poolName ;
23    }
24}
25 
26 
27    

[all classes][diskCacheV111.vehicles]
EMMA 2.0.5312 (C) Vladimir Roubtsov