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

3 years ago
/**
* @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 (
3 years ago
"stock/wxgzh"
3 years ago
"testing"
)
func Test_Fund(t *testing.T) {
3 years ago
f := NewFunds("006229", "162412")
err := wxgzh.Send("o-KDV6NbRaanYz55fJuSgyR0qxxU", f)
if err != nil {
t.Error(err)
}
3 years ago
}