@Test
public void staticVSvarset() throws JIException {
EDocumentPostingMode eDWM = app
.findVarset(EDocumentPostingMode.REGULAR);
OCObject o1 = app.getStaticFields("DocumentPostingMode.Regular");
System.out.println("eDWM: " + eDWM.toString());
System.out.println("Stat: " + o1.toString());
assertTrue(eDWM.toString().equals(o1.toString()));
}