|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| DNSCacheTest | Line # 16 | 2 | 0% | 2 | 0 | 100% |
1.0
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| (1) | |||
| Result | |||
|
0.75
|
javax.jmdns.test.DNSCacheTest.testCacheCreation
javax.jmdns.test.DNSCacheTest.testCacheCreation
|
1 PASS | |
| 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 |
@Before |
| 19 | public void setup() { | |
| 20 | // | |
| 21 | } | |
| 22 | ||
| 23 | 1 |
@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 | } | |
|
||||||||||||