Skip to content

Commit

Permalink
Double test
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed May 12, 2024
1 parent 59aa3b3 commit 3582647
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ class LargeValueFormatterTest {
fun test() {
val formatter = LargeValueFormatter()

val resultDouble = formatter.getFormattedValue(5.0.toFloat(), null)
Assert.assertEquals("5", resultDouble)

var result = formatter.getFormattedValue(5f, null)
Assert.assertEquals("5", result)

Expand Down

0 comments on commit 3582647

Please sign in to comment.