博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
复利计算—单元测试
阅读量:5139 次
发布时间:2019-06-13

本文共 1211 字,大约阅读时间需要 4 分钟。

 

1、手动测试:

2、代码测试:

1 package invest; 2  3 import static org.junit.Assert.*; 4 import static org.hamcrest.CoreMatchers.*; 5 import org.junit.Test; 6  7 public class CompundingTest { 8  9     10     11     @Test12     public void testCompunding() {13         double F=Compunding.compunding(50000, 0.05, 10,1);14         assertThat(F, is(81444.7313388721));15     }16 17     @Test18     public void testSimple_interest() {19         double F=Compunding.simple_interest(50000, 0.05, 10);20         assertThat(F, is(75000.0));21     }22 23     @Test24     public void testCount_Deposit() {25         double P=Compunding.Deposit(50000, 0.05, 10,1);26         assertThat(P, is(30695.66267703796));27     }28 29     30     31     @Test32     public void testCount_invest() {33         double F=Compunding.invest(10000, 0.1, 10,1);34         assertThat(F, is(175311.67061100024));35     }36     37     @Test38     public void testCount_refunt() {39         double P1=Compunding.year_refunt(1000000,0.09, 20);40         //double P2=Compunding.month_refunt(1000000,0.09, 20);41         assertThat(P1, is(98100.0000));42         //assertThat(P2, is(7556.2500));43     }44 45 }

转载于:https://www.cnblogs.com/moliny/p/5339304.html

你可能感兴趣的文章
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
php match_model的简单使用
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
移动开发平台-应用之星app制作教程
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
如何在maven工程中加载oracle驱动
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
下一代操作系统与软件
查看>>
Python IO模型
查看>>
DataGridView的行的字体颜色变化
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Android-多线程AsyncTask
查看>>
LeetCode【709. 转换成小写字母】
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>