Lines Matching refs:props
125 PropertyValue[]props; in checkAPI() local
132 props = xPropAcc.getPropertyValues(); in checkAPI()
141 props = new PropertyValue[p.size()]; in checkAPI()
142 for ( int i=0; i<props.length; i++ ) { in checkAPI()
143 props[i] = new PropertyValue(); in checkAPI()
144 props[i].Value = p.get(i); in checkAPI()
149 props = new PropertyValue[1]; in checkAPI()
150 props[0] = new PropertyValue(); in checkAPI()
151 props[0].Value = testJob; in checkAPI()
154 System.out.println("Props length: "+ props.length); in checkAPI()
155 for (int i=0; i<props.length; i++) { in checkAPI()
159 internalParams[length-1].Value = props[i].Value; in checkAPI()
160 System.out.println("Executing: " + (String)props[i].Value); in checkAPI()
170 …fail("Test run '" + (String)props[i].Value +"' could not be executed: Office crashed and is killed… in checkAPI()
191 …assertTrue("Run '" + (String)props[i].Value + "' has result '" + processedErg + "'", processedErg … in checkAPI()