Lines Matching refs:tempBuffer

75             String tempBuffer = messageFormatter.format(paramArray);
76 if (!tempBuffer.equals("Message with param:BUG"))
78 logln("Formatted with one extra param : " + tempBuffer);
82 tempBuffer = messageFormatter.format(null);
83 if (!tempBuffer.equals("Message without param"))
85 logln("Formatted with no params : " + tempBuffer);
87 tempBuffer = messageFormatter.format(paramArray);
88 if (!tempBuffer.equals("Message without param"))
89 errln("Formatted with arguments > subsitution failed. result = " + tempBuffer.toString());
90 logln("Formatted with extra params : " + tempBuffer);
133 String tempBuffer = messageFormatter.format(paramArray);
134 if (!tempBuffer.equals("Impossible {1} has occurred -- status code is 7 and message is {2}."))
136 logln("Formatted with 7 : " + tempBuffer);
138 Object[] objs = messageFormatter.parse(tempBuffer, status);
146 tempBuffer = messageFormatter.format(null);
147 if (!tempBuffer.equals("Impossible {1} has occurred -- status code is {0} and message is {2}."))
149 logln("Formatted with null : " + tempBuffer);
152 tempBuffer = messageFormatter.format(paramArray);
153 if (!tempBuffer.equals("Double ' Quotes 7 test and quoted {1} test plus 'other {2} stuff'."))
155 logln("Formatted with params : " + tempBuffer);
156 tempBuffer = messageFormatter.format(null);
157 if (!tempBuffer.equals("Double ' Quotes {0} test and quoted {1} test plus 'other {2} stuff'."))
159 logln("Formatted with null : " + tempBuffer);
678 String tempBuffer = messageFormatter.format(paramsMap);
679 if (!tempBuffer.equals("Impossible {arg1} has occurred -- status code is 7 and message is {arg2}."))
681 logln("Formatted with 7 : " + tempBuffer);
683 Map objs = messageFormatter.parseToMap(tempBuffer, status);
693 tempBuffer = messageFormatter.format(null);
694 if (!tempBuffer.equals("Impossible {arg1} has occurred -- status code is {arg0} and message is {arg2}."))
696 logln("Formatted with null : " + tempBuffer);
701 tempBuffer = messageFormatter.format(paramsMap);
702 if (!tempBuffer.equals("Double ' Quotes 7 test and quoted {ARG_ONE} test plus 'other {ARG_TWO} stuff'."))
704 logln("Formatted with params : " + tempBuffer);
705 tempBuffer = messageFormatter.format(null);
706 if (!tempBuffer.equals("Double ' Quotes {ARG_ZERO} test and quoted {ARG_ONE} test plus 'other {ARG_TWO} stuff'."))
708 logln("Formatted with null : " + tempBuffer);