mirror of
https://github.com/allinssl/allinssl.git
synced 2025-12-15 09:55:37 +08:00
13 lines
224 B
Go
13 lines
224 B
Go
package deploy
|
|
|
|
import "testing"
|
|
|
|
func TestTencentCloudAPITest(t *testing.T) {
|
|
result := TencentCloudAPITest("9")
|
|
if result != nil {
|
|
t.Fatalf("SSHAPITest failed: %v", result)
|
|
} else {
|
|
t.Log("SSHAPITest success")
|
|
}
|
|
}
|