/** test for method getPropertyValue(..) Multiple */
 public void testGetPropertyValueMultiple() throws Exception {
   vo.setFullName("John Smith");
   vo.setActive(true);
   holder.setValueObject(vo);
   assertEquals("FullName", "John Smith", holder.getPropertyValue("fullName"));
   assertEquals("active", Boolean.TRUE, holder.getPropertyValue("active"));
 }