Fix for incorrect amounts reported by API

This commit is contained in:
catbref
2020-05-19 15:20:20 +01:00
parent 28991a926f
commit 7102f4a727
2 changed files with 23 additions and 15 deletions

View File

@@ -0,0 +1,22 @@
package org.qortal.test;
import static org.junit.Assert.*;
import org.junit.Test;
import org.qortal.utils.Amounts;
public class AmountsTests {
@Test
public void testPrettyAmount() {
testPrettyAmount(1L, "0.00000001");
testPrettyAmount(100000L, "0.00100000");
testPrettyAmount(100000000L, "1.00000000");
testPrettyAmount(1000000000L, "10.00000000");
}
private void testPrettyAmount(long amount, String prettyAmount) {
assertEquals(prettyAmount, Amounts.prettyAmount(amount));
}
}