You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
388 B
Go

/**
* @Author: jager
* @Email: lhj168os@gmail.com
* @File: fund_test
* @Date: 2021/12/1 3:23 下午
* @package: fund
* @Version: v1.0.0
*
* @Description:
*
*/
package fund
import (
"stock/wxgzh"
"testing"
)
func Test_Fund(t *testing.T) {
f := NewFunds("006229", "162412")
err := wxgzh.Send("o-KDV6NbRaanYz55fJuSgyR0qxxU", f)
if err != nil {
t.Error(err)
}
}