HHH-4679 Make sure @AssociationOverride support the dot notation.

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18521 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Scott Marlow 2010-01-12 19:44:37 +00:00
parent 87cf4555f6
commit 9d49153a93

View File

@ -58,10 +58,10 @@ public void testDottedNotation() throws Exception {
ContactInfo ci = new ContactInfo();
Addr address = new Addr();
address.setCity("Boston");
//address.setCountry("USA");
address.setCountry("USA");
address.setState("MA");
address.setStreet("27 School Street");
//address.setZipcode("02108");
address.setZipcode("02108");
ci.setAddr(address);
List<PhoneNumber> phoneNumbers = new ArrayList();
PhoneNumber num = new PhoneNumber();