persistence setup --provider DATANUCLEUS --database GOOGLE_APP_ENGINE
entity --class ~.domain.PostalAddress --testAutomatically
field string --fieldName street --notNull --sizeMin 2
field string --fieldName city --notNull --sizeMin 2
field string --fieldName state --notNull --sizeMin 2 --permitReservedWords
field string --fieldName zip --notNull --sizeMin 5
entity --class ~.domain.PersonName --testAutomatically
field string --fieldName first --notNull --sizeMin 2 --permitReservedWords
field string --fieldName middle --notNull --sizeMin 1
field string --fieldName family --notNull --sizeMin 2
controller all --package ~.web
perform tests