Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 61   Methods: 7
NCLOC: 36   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SerializedAddress.java - 85.7% 85.7% 85.7%
coverage coverage
 1    /*
 2    * JBoss, the OpenSource J2EE webOS
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7    package org.jboss.cache.pojo.test;
 8   
 9    import java.io.Serializable;
 10   
 11   
 12    /**
 13    * Test class for PojoCache.
 14    *
 15    * @version $Revision: 1.1 $
 16    */
 17    public class SerializedAddress implements Serializable
 18    {
 19    String street = null;
 20    String city = null;
 21    int zip = 0;
 22   
 23  2 public String getStreet()
 24    {
 25  2 return street;
 26    }
 27   
 28  0 public void setStreet(String street)
 29    {
 30  0 this.street = street;
 31    }
 32   
 33  2 public String getCity()
 34    {
 35  2 return city;
 36    }
 37   
 38  2 public void setCity(String city)
 39    {
 40  2 this.city = city;
 41    }
 42   
 43  2 public int getZip()
 44    {
 45  2 return zip;
 46    }
 47   
 48  1 public void setZip(int zip)
 49    {
 50  1 this.zip = zip;
 51    }
 52   
 53  2 public String toString()
 54    {
 55  2 return "street=" + getStreet() + ", city=" + getCity() + ", zip=" + getZip();
 56    }
 57   
 58    // public Object writeReplace() {
 59    // return this;
 60    // }
 61    }