// Copyright 2013-2014 Fuzamei tech Ltd. All rights reserved. package tick import ( "log" //"market" "testing" ) func TestBtc(t *testing.T) { conf := &DsConf{ Url: "218.18.103.38:7709", CfgFile: "serverlist.txt", } ds, err := newBtcDS(conf) if err != nil { t.Fatal(err) } go ds.Run() chmk := ds.GetMarket() for mk := range chmk { log.Println(mk) } log.Println("@@@@@@@:go here") }