Quotation from Sina source
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
easyquotation/utils/helper_test.go

20 lines
238 B

4 years ago
package utils
import (
"fmt"
"testing"
)
func TestUpdateStockCodes(t *testing.T) {
UpdateStockCodes()
}
func TestStockMarket(t *testing.T) {
}
func TestRandom(t *testing.T) {
for i:=0; i< 100; i++ {
fmt.Println(Random(5))
}
}