package pural import ( "testing" ) func TestDownloadPublicBnnFile(t *testing.T) { err := DownloadPublicBnnlists() if err != nil { t.Errorf("%s", err) } //t.Logf("%v", f) } func TestRetrievePublicBnnlistStk(t *testing.T) { f, err := RetrievePublicBnnlistStk() if err != nil { t.Errorf("%s", err) } t.Logf("%v", f) }