comm_test.go 216 B

12345678910111213
  1. package utils
  2. import (
  3. "github.com/beego/beego/v2/core/logs"
  4. "testing"
  5. )
  6. // TestGet is a sample to run an endpoint test
  7. func TestAmountConvert(t *testing.T) {
  8. en := AmountConvert(521.71, true)
  9. logs.Info(en)
  10. }