Subversion Repositories javautils

Rev

Rev 9 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9 Rev 17
Line 1... Line 1...
1
package de.viathinksoft.utils.mail;
1
package de.viathinksoft.utils.mail.address;
2
 
2
 
3
import static org.junit.Assert.*;
3
import static org.junit.Assert.*;
4
 
4
 
5
import java.net.IDN;
5
import java.net.IDN;
6
 
6
 
7
import org.junit.Test;
7
import org.junit.Test;
8
 
8
 
-
 
9
import de.viathinksoft.utils.mail.address.EMailAddress;
-
 
10
 
9
public class EMailAddressTest {
11
public class EMailAddressTest {
10
       
12
       
11
        private static final String ExamplePunycode = "xn--zckzah"; // Japanese IDN Test TLD
13
        private static final String ExamplePunycode = "xn--zckzah"; // Japanese IDN Test TLD
12
        private static final String ExampleUnicode = IDN.toUnicode(ExamplePunycode);
14
        private static final String ExampleUnicode = IDN.toUnicode(ExamplePunycode);
13
       
15