Clover Coverage Report - JmDNS 3.4.1
Coverage timestamp: Thu Aug 25 2011 13:06:33 CEST
2   29   2   1
0   15   1   2
2     1  
1    
 
  DNSCacheTest       Line # 16 2 0% 2 0 100% 1.0
 
  (1)
 
1    /**
2    *
3    */
4    package javax.jmdns.test;
5   
6    import static junit.framework.Assert.assertNotNull;
7   
8    import javax.jmdns.impl.DNSCache;
9   
10    import org.junit.Before;
11    import org.junit.Test;
12   
13    /**
14    *
15    */
 
16    public class DNSCacheTest {
17   
 
18  1 toggle @Before
19    public void setup() {
20    //
21    }
22   
 
23  1 toggle @Test
24    public void testCacheCreation() {
25  1 DNSCache cache = new DNSCache();
26  1 assertNotNull("Could not create a new DNS cache.", cache);
27    }
28   
29    }