From 29091507352806e3db277d6d1a19c9c62cfa9d34 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Fri, 28 Jun 2019 23:14:24 +0300 Subject: [PATCH] add a test for the ParsedQuantity(String) constructor --- .../mobileledger/json/ParsedQuantityTest.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 app/src/test/java/net/ktnx/mobileledger/json/ParsedQuantityTest.java 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 -- 2.39.2