public void testStrictnessOfConversion()
{
String[] inputValues = {"123ABC", "22.22.2" };
Mock mock = buildMockUIComponent(inputValues.length * 3);
UIComponent component = (UIComponent) mock.proxy();
MockUIComponentWrapper wrapper = new MockUIComponentWrapper(mock, component);
for (int i = 0; i < inputValues.length; i++)
{
doTestStrictNess(facesContext, wrapper, Locale.US, inputValues[i]);
}