本文整理汇总了Golang中github.com/jbowles/money.Money.Mul方法的典型用法代码示例。如果您正苦于以下问题:Golang Money.Mul方法的具体用法?Golang Money.Mul怎么用?Golang Money.Mul使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/jbowles/money.Money
的用法示例。
在下文中一共展示了Money.Mul方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestMoneyMul
// check multiplication is good but also that original values are not modified
func TestMoneyMul(t *testing.T) {
m1 := money.Money{M: 67} //67 cents!!
m2 := money.Money{M: 6700} // 67 dollars
res := m2.Mul(&m1)
finResi := int64(4489) // 44 dollars and 89 cents
finResf := float64(44.89) // 44 dollars and 89 cents
if res.Valuei() != finResi {
t.Error("expected '4489' got: ", res.Valuei())
}
if res.Valuef() != finResf {
t.Error("expected '44.89' got: ", res.Valuef())
}
if m1.Valuei() != int64(67) {
t.Error("expected '67' got: ", m1.Valuei())
}
if m2.Valuei() != int64(6700) {
t.Error("expected '6700' got: ", m2.Valuei())
}
if m1.Valuef() != float64(0.67) {
t.Error("expected '0.67' got: ", m1.Valuef())
}
if m2.Valuef() != float64(67.00) {
t.Error("expected '67.00' got: ", m2.Valuef())
}
if res.StringD() != "44.89" {
t.Error("expected '44.89' got: ", res.StringD())
}
}