currency_test.go 189 B

1234567891011
  1. package common
  2. import (
  3. "testing"
  4. )
  5. func Test_ObtainCurrencyPrice(t *testing.T) {
  6. eth, mf1, mr := ObtainCurrencyPrice()
  7. t.Errorf("eth:%s , mf1 :%s , mr :%s", eth, mf1, mr)
  8. t.Fail()
  9. }