X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Ftest%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2FParsedQuantityTest.java;fp=app%2Fsrc%2Ftest%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2FParsedQuantityTest.java;h=7f5e2f8e8008dea746f7d8e35e7b0cd823997e9e;hp=0000000000000000000000000000000000000000;hb=29091507352806e3db277d6d1a19c9c62cfa9d34;hpb=e2170466229a4093d1825f37648e113e23cad6fa diff --git a/app/src/test/java/net/ktnx/mobileledger/json/ParsedQuantityTest.java b/app/src/test/java/net/ktnx/mobileledger/json/ParsedQuantityTest.java new file mode 100644 index 00000000..7f5e2f8e --- /dev/null +++ b/app/src/test/java/net/ktnx/mobileledger/json/ParsedQuantityTest.java @@ -0,0 +1,35 @@ +/* + * Copyright © 2019 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. + * + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. + * + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . + */ + +package net.ktnx.mobileledger.json; + +import org.junit.Test; + +import static junit.framework.TestCase.assertEquals; + +public class ParsedQuantityTest { + @Test + public void fromString() { + ParsedQuantity pq = new ParsedQuantity("-22"); + assertEquals(0, pq.getDecimalPlaces()); + assertEquals( -22, pq.getDecimalMantissa()); + + pq = new ParsedQuantity("-123.45"); + assertEquals( 2, pq.getDecimalPlaces()); + assertEquals( -12345, pq.getDecimalMantissa()); + } +} \ No newline at end of file