17
17
18
18
package com .fasterxml .uuid ;
19
19
20
+ import java .util .Arrays ;
21
+ import java .util .Random ;
22
+
20
23
import com .fasterxml .uuid .impl .TimeBasedGenerator ;
21
- import java . net . InetSocketAddress ;
24
+
22
25
import junit .framework .Test ;
23
26
import junit .framework .TestCase ;
24
27
import junit .framework .TestSuite ;
25
28
import junit .textui .TestRunner ;
26
29
27
- import java .util .Arrays ;
28
- import java .util .Random ;
29
-
30
30
/**
31
31
* JUnit Test class for the com.fasterxml.uuid.EthernetAddress class.
32
32
*
33
33
* @author Eric Bie
34
34
* @author Tatu Saloranta (changes for version 3.0)
35
+ * @author Paul Galbraith (egress-related tests)
35
36
*/
36
37
public class EthernetAddressTest extends TestCase
37
38
{
@@ -1309,6 +1310,9 @@ public void testFromInterface() throws Exception
1309
1310
assertNotNull (addr .toString ());
1310
1311
}
1311
1312
1313
+ // 20-Jun-2022, tatu: Not sure why @Ignore didn't work but
1314
+ // need to comment out until [#52] is fully resolved
1315
+ /*
1312
1316
public void testFromEgressInterfaceRoot() throws Exception
1313
1317
{
1314
1318
InetSocketAddress extAddr = new InetSocketAddress("a.root-servers.net", 0);
@@ -1323,6 +1327,7 @@ public void testFromEgressInterface() throws Exception
1323
1327
assertNotNull(ifAddr);
1324
1328
assertNotNull(ifAddr.toString());
1325
1329
}
1330
+ */
1326
1331
1327
1332
public void testDefaultTimeBasedGenerator ()
1328
1333
{
0 commit comments