test updates to make sure Enums are handled consistently.

This commit is contained in:
John J. Aylward
2016-08-11 12:21:49 -04:00
parent c400de3cfe
commit 5779400f26
2 changed files with 70 additions and 27 deletions

View File

@@ -20,4 +20,7 @@ public enum MyEnumField {
public Integer getIntVal() {
return intVal;
}
public String toString(){
return value;
}
}