liuxiaolong
2020-07-02 1b4337e04bc35c8b6f4931a5896f04884fef69c6
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)
}