Vestmore_GO/proto/stock_test.go

12 lines
167 B
Go
Raw Normal View History

2024-04-16 10:00:05 +00:00
package proto
import "testing"
func TestStockAPI(t *testing.T) {
result, err := StockDetail("HKEX", 1, "01237")
if err != nil {
panic(err)
}
t.Error(result)
}