12 lines
183 B
Go
12 lines
183 B
Go
package ebaiapi
|
|
|
|
import "testing"
|
|
|
|
func TestGetStoreImStatus(t *testing.T) {
|
|
data, err := api.GetStoreIMStatus("1139781155")
|
|
if err != nil {
|
|
t.Errorf("%v", err)
|
|
}
|
|
t.Log(data)
|
|
}
|