money_test.go 144 B

1234567891011
  1. package money
  2. import (
  3. "testing"
  4. )
  5. func TestYuan2Fen(t *testing.T) {
  6. if int(Yuan2Fen(1.2)) != 120 {
  7. t.Fatal("元转换为分错误")
  8. }
  9. }