We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59aa3b3 + 3582647 commit cae29e8Copy full SHA for cae29e8
MPChartLib/src/test/java/com/github/mikephil/charting/test/LargeValueFormatterTest.kt
@@ -9,6 +9,9 @@ class LargeValueFormatterTest {
9
fun test() {
10
val formatter = LargeValueFormatter()
11
12
+ val resultDouble = formatter.getFormattedValue(5.0.toFloat(), null)
13
+ Assert.assertEquals("5", resultDouble)
14
+
15
var result = formatter.getFormattedValue(5f, null)
16
Assert.assertEquals("5", result)
17
0 commit comments