liuxiaolong
2020-07-13 0bf0d834f54c2b2cf3aef2ed3c4ce529de2a89b8
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)
}