📄 testmoneyrounding.java
字号:
/* ============================================================= * SmallSQL : a free Java DBMS library for the Java(tm) platform * ============================================================= * * (C) Copyright 2004-2006, by Volker Berlin. * * Project Info: http://www.smallsql.de/ * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library 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 Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, * USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc. * in the United States and other countries.] * * --------------- * TestMoneyRounding.java * --------------- * Author: Volker Berlin * */package smallsql.junit;import junit.framework.*;import java.math.BigDecimal;import java.sql.*;import smallsql.database.Money;public class TestMoneyRounding extends TestCase{ static final String table = "TestMoneyRounding"; public void setUp() throws SQLException{ tearDown(); Connection con = AllTests.getConnection(); Statement st = con.createStatement(); st.execute("create table " + table + "(a money, b smallmoney)"); } public void tearDown(){ try{ Connection con = AllTests.getConnection(); Statement st = con.createStatement(); st.execute("drop table " + table); st.close(); }catch(Throwable e){ //e.printStackTrace(); } } public void testMoney1() throws Exception{ Connection con = AllTests.getConnection(); Statement st = con.createStatement(); int firstValue = -10000; for(int i=firstValue; i<10000; i++){ st.execute("Insert into " + table + "(a,b) values(" + (i/10000.0) + "," +(i/10000.0) +")"); } st.close(); verify(firstValue); } private void verify(int firstValue) throws Exception{ Connection con = AllTests.getConnection(); Statement st = con.createStatement(); ResultSet rs = st.executeQuery("Select * FROM " + table); long i = firstValue; while(rs.next()){ Object obj1 = rs.getObject(1); Object obj2 = rs.getObject(2); if(obj1 instanceof Money){ Money mon1 = (Money)obj1; Money mon2 = (Money)obj2; assertEquals("Roundungsfehler money:", i, mon1.unscaledValue()); assertEquals("Roundungsfehler smallmoney:", i, mon2.unscaledValue()); }else{ BigDecimal mon1 = (BigDecimal)obj1; BigDecimal mon2 = (BigDecimal)obj2; assertEquals("Roundungsfehler money:", i, mon1.unscaledValue().longValue()); assertEquals("Roundungsfehler smallmoney:", i, mon2.unscaledValue().longValue()); } i++; } st.close(); } public void testMoney2() throws Exception{ Connection con = AllTests.getConnection(); Statement st = con.createStatement(); int firstValue = -10000; for(int i=firstValue; i<10000; i++){ st.execute("Insert into " + table + "(a,b) values( (" + i + "/10000.0), (" + i + "/10000.0) )"); } st.close(); verify(firstValue); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -