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