View Javadoc

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      @Before
19      public void setup() {
20          //
21      }
22  
23      @Test
24      public void testCacheCreation() {
25          DNSCache cache = new DNSCache();
26          assertNotNull("Could not create a new DNS cache.", cache);
27      }
28  
29  }