This is a minor issue, but CountUtil test cases will fail on systems with a locale that uses different punctuation for numbers. For instance, any German locale renders numbers like this: 123.456.789,10. This is different from the English locale (123,456,789.10).
Thus, testGetFormattedCount* test cases will fail with error messages such as junit.framework.ComparisonFailure: expected:<1[.]2k> but was:<1[,]2k>.
This is a minor issue, but CountUtil test cases will fail on systems with a locale that uses different punctuation for numbers. For instance, any German locale renders numbers like this: 123.456.789,10. This is different from the English locale (123,456,789.10).
Thus, testGetFormattedCount* test cases will fail with error messages such as
junit.framework.ComparisonFailure: expected:<1[.]2k> but was:<1[,]2k>
.