Lines Matching refs:tempBuffer

76             String tempBuffer = messageFormatter.format(paramArray);
77 if (!tempBuffer.equals("Message with param:BUG"))
79 logln("Formatted with one extra param : " + tempBuffer);
83 tempBuffer = messageFormatter.format(null);
84 if (!tempBuffer.equals("Message without param"))
86 logln("Formatted with no params : " + tempBuffer);
88 tempBuffer = messageFormatter.format(paramArray);
89 if (!tempBuffer.equals("Message without param"))
90 errln("Formatted with arguments > subsitution failed. result = " + tempBuffer.toString());
91 logln("Formatted with extra params : " + tempBuffer);
134 String tempBuffer = messageFormatter.format(paramArray);
135 if (!tempBuffer.equals("Impossible {1} has occurred -- status code is 7 and message is {2}."))
137 logln("Formatted with 7 : " + tempBuffer);
139 Object[] objs = messageFormatter.parse(tempBuffer, status);
147 tempBuffer = messageFormatter.format(null);
148 if (!tempBuffer.equals("Impossible {1} has occurred -- status code is {0} and message is {2}."))
150 logln("Formatted with null : " + tempBuffer);
153 tempBuffer = messageFormatter.format(paramArray);
154 if (!tempBuffer.equals("Double ' Quotes 7 test and quoted {1} test plus 'other {2} stuff'."))
156 logln("Formatted with params : " + tempBuffer);
157 tempBuffer = messageFormatter.format(null);
158 if (!tempBuffer.equals("Double ' Quotes {0} test and quoted {1} test plus 'other {2} stuff'."))
160 logln("Formatted with null : " + tempBuffer);
679 String tempBuffer = messageFormatter.format(paramsMap);
680 if (!tempBuffer.equals("Impossible {arg1} has occurred -- status code is 7 and message is {arg2}."))
682 logln("Formatted with 7 : " + tempBuffer);
684 Map objs = messageFormatter.parseToMap(tempBuffer, status);
694 tempBuffer = messageFormatter.format(null);
695 if (!tempBuffer.equals("Impossible {arg1} has occurred -- status code is {arg0} and message is {arg2}."))
697 logln("Formatted with null : " + tempBuffer);
702 tempBuffer = messageFormatter.format(paramsMap);
703 if (!tempBuffer.equals("Double ' Quotes 7 test and quoted {ARG_ONE} test plus 'other {ARG_TWO} stuff'."))
705 logln("Formatted with params : " + tempBuffer);
706 tempBuffer = messageFormatter.format(null);
707 if (!tempBuffer.equals("Double ' Quotes {ARG_ZERO} test and quoted {ARG_ONE} test plus 'other {ARG_TWO} stuff'."))
709 logln("Formatted with null : " + tempBuffer);