assertEquals("[IPv6:2001:DB8::]", mailboxAST.remotePartAST.spelling);
}
@Test
public void testIpv4Address() throws Exception {
MailboxAST mailboxAST = parse("john@[192.0.2.0]");
assertEquals(InetAddress.getByName("192.0.2.0"),
((Ipv4RemotePartAST) (mailboxAST.remotePartAST)).ipv4.address);
assertEquals(InetAddress.getByName("192.0.2.0"),
((AddressLiteralRemotePartAST) (mailboxAST.remotePartAST)).address);
}