Searched refs:formatTester (Results 1 – 1 of 1) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | DecimalFormatTest.java | 1056 FormatTester formatTester = new FormatTester(); in test_formatDouble_scientificNotation() local 1067 formatTester.format(df, "00.0E0", 0.0); in test_formatDouble_scientificNotation() 1068 formatTester.format(df, "10.0E-1", 1.0); in test_formatDouble_scientificNotation() 1069 formatTester.format(df, "12.0E0", 12.0); in test_formatDouble_scientificNotation() 1070 formatTester.format(df, "12.3E1", 123.0); in test_formatDouble_scientificNotation() 1071 formatTester.format(df, "12.34E2", 1234.0); in test_formatDouble_scientificNotation() 1072 formatTester.format(df, "12.35E3", 12346.0); in test_formatDouble_scientificNotation() 1073 formatTester.format(df, "10.0E4", 99999.0); in test_formatDouble_scientificNotation() 1074 formatTester.format(df, "12.0E-1", 1.2); in test_formatDouble_scientificNotation() 1075 formatTester.format(df, "12.3E0", 12.3); in test_formatDouble_scientificNotation() [all …]
|