data_test.go 212 B

1234567891011121314
  1. package main
  2. import (
  3. "log"
  4. "testing"
  5. )
  6. func TestGetAreaInfo(t *testing.T) {
  7. data := map[string]interface{}{
  8. "detail": "北京鑫台华科技有限公司",
  9. }
  10. res := GetAreaInfo(data)
  11. log.Println(res)
  12. }