liuxiaolong
2020-06-28 71ce16cb6eba7898b6e555e6b29c3608b39e2892
1
2
3
4
5
6
7
8
9
10
11
package service
 
import (
    "fmt"
    "testing"
)
 
func TestGetSdkList(t *testing.T) {
    list := GetSdkList("")
    fmt.Println("sdks:", list)
}